mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ext/dvdnav/dvdnavsrc.c: Correctly chain up to the parent's finalize function.
Original commit message from CVS: * ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_finalize): Correctly chain up to the parent's finalize function.
This commit is contained in:
parent
14926b9c60
commit
30087cad47
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_finalize):
|
||||||
|
Correctly chain up to the parent's finalize function.
|
||||||
|
|
||||||
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
|
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
* gst/mpegaudioparse/gstmpegaudioparse.c:
|
* gst/mpegaudioparse/gstmpegaudioparse.c:
|
||||||
|
|
|
@ -302,6 +302,8 @@ gst_dvd_nav_src_finalize (GObject * object)
|
||||||
|
|
||||||
if (src->vts_attrs)
|
if (src->vts_attrs)
|
||||||
g_array_free (src->vts_attrs, TRUE);
|
g_array_free (src->vts_attrs, TRUE);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue