gst/qtdemux/qtdemux.c: Fix crash dereferencing NULL pointer if there's no stco atom.

Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
Fix crash dereferencing NULL pointer if there's no stco atom.
Fixes #387122.
This commit is contained in:
Tim-Philipp Müller 2006-12-18 12:27:32 +00:00
parent 75847358e4
commit ef691f3827

View file

@ -3682,7 +3682,10 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
co64 = qtdemux_tree_get_child_by_type (stbl, FOURCC_co64);
if (stco == NULL && co64 == NULL)
goto corrupt_file;
stco_data = (const guint8 *) stco->data;
if (stco)
stco_data = (const guint8 *) stco->data;
else
stco_data = NULL;
/* sample time */
stts = qtdemux_tree_get_child_by_type (stbl, FOURCC_stts);
if (stts == NULL)