gst/multipart/multipartmux.c: Fix memory leak

Original commit message from CVS:
* gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
(gst_multipart_mux_loop):
Fix memory leak
This commit is contained in:
Wim Taymans 2004-06-08 11:24:45 +00:00
parent b2972c34f7
commit e232b09d50
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-06-08 Wim Taymans <wim@fluendo.com>
* gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
(gst_multipart_mux_loop):
Fix memory leak
2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):

View file

@ -524,6 +524,7 @@ gst_multipart_mux_loop (GstElement * element)
gst_pad_push (mux->srcpad, GST_DATA (newbuf));
gst_buffer_unref (buf);
pad->buffer = NULL;
}