diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-07-15 14:57:49 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-07-15 14:57:49 +0100 |
commit | e0714f67b30e82e87efece4a5e3d0bc9ada13472 (patch) | |
tree | 09a9f63f1bb8fbb34c20d4e48b28cd26354e36f5 /ext | |
parent | d68fc85d605c0fa680baf3010323ce4539c6dbc4 (diff) |
mpg123audiodec: fix caps leak
The pad template takes its own ref, so we should unref the caps.
https://bugzilla.gnome.org/show_bug.cgi?id=784982
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mpg123/gstmpg123audiodec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mpg123/gstmpg123audiodec.c b/ext/mpg123/gstmpg123audiodec.c index cfd017ea3..fa6743cb9 100644 --- a/ext/mpg123/gstmpg123audiodec.c +++ b/ext/mpg123/gstmpg123audiodec.c @@ -167,6 +167,7 @@ gst_mpg123_audio_dec_class_init (GstMpg123AudioDecClass * klass) src_template_caps = gst_caps_from_string (s->str); src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS, src_template_caps); + gst_caps_unref (src_template_caps); g_string_free (s, TRUE); } |