summaryrefslogtreecommitdiff
path: root/ext/mpg123
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2012-10-30 10:20:09 +1100
committerJan Schmidt <thaytan@noraisin.net>2012-10-30 10:20:09 +1100
commit41b08e2948aeef0becde4cda76a595743c84cb9c (patch)
treeffe6b4af033f6beca3482501cd75b03a6dd94cb4 /ext/mpg123
parent119c27c9b908e90c7c4a52e46f13ba81e5860d14 (diff)
downloadgstreamer-plugins-bad-41b08e2948aeef0becde4cda76a595743c84cb9c.tar.gz
mpg123: Fix leaks from not chaining up in the finalize function
Diffstat (limited to 'ext/mpg123')
-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 16bcfce06..3107d551c 100644
--- a/ext/mpg123/gstmpg123audiodec.c
+++ b/ext/mpg123/gstmpg123audiodec.c
@@ -212,6 +212,7 @@ gst_mpg123_audio_dec_finalize (GObject * object)
mpg123_delete (mpg123_decoder->handle);
mpg123_decoder->handle = NULL;
}
+ G_OBJECT_CLASS (gst_mpg123_audio_dec_parent_class)->finalize (object);
}