ext/jpeg/gstsmokeenc.c: fix memleak. Fixes #326618

Original commit message from CVS:

patch by: Wim Taymans

* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
fix memleak.  Fixes #326618
This commit is contained in:
Wim Taymans 2006-01-13 18:37:13 +00:00 committed by Thomas Vander Stichele
parent 78e58c2431
commit db44320882
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Wim Taymans
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
fix memleak. Fixes #326618
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Mike Smith

View file

@ -340,7 +340,7 @@ gst_smokeenc_chain (GstPad * pad, GstBuffer * buf)
smokeenc->max_quality);
smokecodec_set_threshold (smokeenc->info, smokeenc->threshold);
smokecodec_encode (smokeenc->info, data, flags, outdata, &encsize);
/*gst_buffer_unref (buf); */
gst_buffer_unref (buf);
GST_BUFFER_SIZE (outbuf) = encsize;
GST_BUFFER_OFFSET (outbuf) = smokeenc->frame;