summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-07-15 14:57:49 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-07-15 14:57:49 +0100
commit841a073154d9ab512b2abba997552b2ae354bc92 (patch)
treeca90ed39f598ec94b5ee9bedff67b7e47f94a6ba
parent9c080387bb2959dad7b7c912979e949d49608b18 (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
-rw-r--r--ext/mpg123/gstmpg123audiodec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mpg123/gstmpg123audiodec.c b/ext/mpg123/gstmpg123audiodec.c
index cfd017ea32..fa6743cb90 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);
}