frei0r: Unref the GstCollectPads instance on finalize

This commit is contained in:
Sebastian Dröge 2009-06-14 19:35:29 +02:00
parent 15f1ccaef8
commit 32a0af3e54

View file

@ -60,6 +60,10 @@ gst_frei0r_mixer_finalize (GObject * object)
klass->n_properties);
self->property_cache = NULL;
if (self->collect)
gst_object_unref (self->collect);
self->collect = NULL;
G_OBJECT_CLASS (g_type_class_peek_parent (klass))->finalize (object);
}