Fixes a small but nasty bug. The derived elements no longer segfaults on finalization.

Original commit message from CVS:
Fixes a small but nasty bug. The derived elements no longer segfaults on
finalization.
This commit is contained in:
Zeeshan Ali 2005-10-26 20:00:46 +00:00
parent 5fba886320
commit 6c57193525
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2005-10-26 Andre Magalhaes <andrunko@gmail.com>
reviewed by: Zeeshan Ali <zeenix@gmail.com>
* gst-libs/gst/rtp/gstbasertpdepayload.c:
(gst_base_rtp_depayload_class_init):
Fixes a small but nasty bug. The derived elements no longer segfaults
on finalization.
2005-10-26 Michael Smith <msmith@fluendo.com>
* gst/audioconvert/audioconvert.c: (audio_convert_clean_context):

View file

@ -104,6 +104,7 @@ gst_base_rtp_depayload_class_init (GstBaseRTPDepayloadClass * klass)
gobject_class = G_OBJECT_CLASS (klass);
gstelement_class = (GstElementClass *) klass;
parent_class = g_type_class_peek_parent (klass);
gobject_class->set_property = gst_base_rtp_depayload_set_property;
gobject_class->get_property = gst_base_rtp_depayload_get_property;