diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-12 10:22:42 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-12 10:22:42 +0000 |
commit | 8792203e3938118f5800b75eeb1930720870f82f (patch) | |
tree | c1a715cb13e1b4845d5077c3621e0f889e3b44f1 /gst/vmnc | |
parent | 93e767bed88cb2195158981c6bfe6263c3bfe320 (diff) |
Fix some finalize leaks by chaining up to the parent method.
Original commit message from CVS:
* ext/xvid/gstxvidenc.c:
* gst/vmnc/vmncdec.c:
* sys/glsink/glimagesink.c:
* sys/glsink/gstgldisplay.c:
Fix some finalize leaks by chaining up to the parent method.
Diffstat (limited to 'gst/vmnc')
-rw-r--r-- | gst/vmnc/vmncdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/vmnc/vmncdec.c b/gst/vmnc/vmncdec.c index e6c6f8aea..6b29c5923 100644 --- a/gst/vmnc/vmncdec.c +++ b/gst/vmnc/vmncdec.c @@ -219,6 +219,8 @@ vmnc_dec_finalize (GObject * object) GstVMncDec *dec = GST_VMNC_DEC (object); g_object_unref (dec->adapter); + + G_OBJECT_CLASS (parent_class)->finalize (object); } static void |