mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 09:25:42 +00:00
ext/mpeg2enc/gstmpeg2enc.cc: call the parent dispose function to avoid segfault on destroy.
Original commit message from CVS: * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the parent dispose function to avoid segfault on destroy.
This commit is contained in:
parent
d9cf9b2033
commit
46638d8110
2 changed files with 7 additions and 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),
|
||||
|
|
|
@ -188,6 +188,8 @@ gst_mpeg2enc_dispose (GObject * object)
|
|||
enc->encoder = NULL;
|
||||
}
|
||||
delete enc->options;
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue