matroskademux: Correctly handle NULL GstIndex
This commit is contained in:
parent
0c6fba9506
commit
b35b752c41
@ -5803,7 +5803,7 @@ gst_matroska_demux_set_index (GstElement * element, GstIndex * index)
|
|||||||
GST_OBJECT_LOCK (demux);
|
GST_OBJECT_LOCK (demux);
|
||||||
if (demux->element_index)
|
if (demux->element_index)
|
||||||
gst_object_unref (demux->element_index);
|
gst_object_unref (demux->element_index);
|
||||||
demux->element_index = gst_object_ref (index);
|
demux->element_index = index ? gst_object_ref (index) : NULL;
|
||||||
GST_OBJECT_UNLOCK (demux);
|
GST_OBJECT_UNLOCK (demux);
|
||||||
GST_DEBUG_OBJECT (demux, "Set index %" GST_PTR_FORMAT, demux->element_index);
|
GST_DEBUG_OBJECT (demux, "Set index %" GST_PTR_FORMAT, demux->element_index);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user