diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-02-12 11:12:43 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-02-12 11:12:43 +0000 |
commit | 45e319e4c189a69ed29d9422626423759cb92ced (patch) | |
tree | 994d3037bda5ddaa7dabd899cbf291de450d0735 /gst/debug | |
parent | ababb87313294ef9f9b42c74204319657a5126e3 (diff) |
gst/debug/efence.c: Properly chain up finalize method. Fixes bug #515979.
Original commit message from CVS:
* gst/debug/efence.c: (gst_fenced_buffer_finalize),
(gst_fenced_buffer_class_init):
Properly chain up finalize method. Fixes bug #515979.
Diffstat (limited to 'gst/debug')
-rw-r--r-- | gst/debug/efence.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gst/debug/efence.c b/gst/debug/efence.c index d77afbb0..90b98cb0 100644 --- a/gst/debug/efence.c +++ b/gst/debug/efence.c @@ -376,9 +376,13 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, "access to data in the buffer is more likely to cause segmentation " "faults. This allocation method is very similar to the debugging tool " "\"Electric Fence\".", - plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) + plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN); - static void gst_fenced_buffer_finalize (GstFencedBuffer * buffer) + +static GstBufferClass *fenced_buffer_parent_class = NULL; + +static void +gst_fenced_buffer_finalize (GstFencedBuffer * buffer) { GstFencedBuffer *fenced_buffer; @@ -392,6 +396,9 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, fenced_buffer->length); munmap (fenced_buffer->region, fenced_buffer->length); } + + GST_MINI_OBJECT_CLASS (fenced_buffer_parent_class)-> + finalize (GST_MINI_OBJECT (buffer)); } static GstFencedBuffer * @@ -498,6 +505,8 @@ gst_fenced_buffer_class_init (gpointer g_class, gpointer class_data) { GstMiniObjectClass *mini_object_class = GST_MINI_OBJECT_CLASS (g_class); + fenced_buffer_parent_class = g_type_class_peek_parent (g_class); + mini_object_class->finalize = (GstMiniObjectFinalizeFunction) gst_fenced_buffer_finalize; mini_object_class->copy = (GstMiniObjectCopyFunction) gst_fenced_buffer_copy; |