[MOVED FROM BAD 56/68] colorspace: Fix memory leak

This commit is contained in:
David Schleef 2011-02-15 18:12:02 -08:00 committed by Wim Taymans
parent be7f42f0ac
commit 3c73b42cee

View file

@ -407,7 +407,14 @@ gst_csp_base_init (gpointer klass)
static void
gst_csp_finalize (GObject * obj)
{
GstCsp *space = GST_CSP (obj);
if (space->convert) {
colorspace_convert_free (space->convert);
}
G_OBJECT_CLASS (parent_class)->finalize (obj);
}
static void