From 35d40ee0edee5ae7a9e76ed060fb519bc6d33ed5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 28 Nov 2005 22:54:48 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ ext/ogg/gstoggmux.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4cf992c..c712bbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-28 Tim-Philipp Müller + + * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers): + Don't leak caps. + 2005-11-28 Julien MOUTTE * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put), diff --git a/ext/ogg/gstoggmux.c b/ext/ogg/gstoggmux.c index 7a77502..3c482d4 100644 --- a/ext/ogg/gstoggmux.c +++ b/ext/ogg/gstoggmux.c @@ -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; -- 2.7.4