mpg123: Fix leaks from not chaining up in the finalize function

This commit is contained in:
Jan Schmidt 2012-10-30 10:20:09 +11:00
parent 119c27c9b9
commit 41b08e2948

View file

@ -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);
}