mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
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:
parent
5fba886320
commit
6c57193525
2 changed files with 10 additions and 0 deletions
|
@ -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):
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue