ext/ogg/gstoggmux.c: Don't leak caps.

Original commit message from CVS:
* ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
Don't leak caps.
This commit is contained in:
Tim-Philipp Müller 2005-11-28 22:54:48 +00:00
parent ff7304769f
commit 35d40ee0ed
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
* ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
Don't leak caps.
2005-11-28 Julien MOUTTE <julien@moutte.net>
* sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),

View file

@ -969,6 +969,7 @@ gst_ogg_mux_send_headers (GstOggMux * mux)
if (caps) {
caps = gst_ogg_mux_set_header_on_caps (caps, hbufs);
gst_pad_set_caps (mux->srcpad, caps);
gst_caps_unref (caps);
}
/* and send the buffers */
hwalk = hbufs;