diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/mpeg2enc/gstmpeg2enc.cc | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2004-05-04 Wim Taymans <wim@fluendo.com> + + * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the + parent dispose function to avoid segfault on destroy. + 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org> * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link), diff --git a/ext/mpeg2enc/gstmpeg2enc.cc b/ext/mpeg2enc/gstmpeg2enc.cc index ee64d420..f3bc8229 100644 --- a/ext/mpeg2enc/gstmpeg2enc.cc +++ b/ext/mpeg2enc/gstmpeg2enc.cc @@ -188,6 +188,8 @@ gst_mpeg2enc_dispose (GObject * object) enc->encoder = NULL; } delete enc->options; + + G_OBJECT_CLASS (parent_class)->dispose (object); } static void |