mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
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:
parent
78e58c2431
commit
db44320882
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue