mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
oggdemux: Set chain pointers to NULL
Otherwise, they will refer to freed memory https://bugzilla.gnome.org/show_bug.cgi?id=753078
This commit is contained in:
parent
0a3fe31f26
commit
4665c0802a
1 changed files with 3 additions and 0 deletions
|
@ -2777,6 +2777,7 @@ gst_ogg_demux_deactivate_current_chain (GstOggDemux * ogg)
|
||||||
if (!ogg->pullmode) {
|
if (!ogg->pullmode) {
|
||||||
if (ogg->building_chain == chain)
|
if (ogg->building_chain == chain)
|
||||||
ogg->building_chain = NULL;
|
ogg->building_chain = NULL;
|
||||||
|
ogg->current_chain = NULL;
|
||||||
gst_ogg_chain_free (chain);
|
gst_ogg_chain_free (chain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4920,6 +4921,8 @@ gst_ogg_demux_clear_chains (GstOggDemux * ogg)
|
||||||
gst_ogg_chain_free (chain);
|
gst_ogg_chain_free (chain);
|
||||||
}
|
}
|
||||||
ogg->chains = g_array_set_size (ogg->chains, 0);
|
ogg->chains = g_array_set_size (ogg->chains, 0);
|
||||||
|
ogg->current_chain = NULL;
|
||||||
|
ogg->building_chain = NULL;
|
||||||
GST_CHAIN_UNLOCK (ogg);
|
GST_CHAIN_UNLOCK (ogg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue