From 87eb1f391dac811ea071a0a313ff02ca532c73f5 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 4 Feb 2008 12:07:14 +0000 Subject: gst/avi/gstavidemux.c: If there's no entries in the subindex, don't try to do anything stupid, just return. Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex): If there's no entries in the subindex, don't try to do anything stupid, just return. --- gst/avi/gstavidemux.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gst/avi/gstavidemux.c') diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index d68b5376..5e7eacc0 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -979,6 +979,10 @@ gst_avi_demux_parse_subindex (GstAviDemux * avi, num = GST_READ_UINT32_LE (&data[4]); baseoff = GST_READ_UINT64_LE (&data[12]); + /* If there's nothing, just return ! */ + if (num == 0) + return TRUE; + if (!(entries = g_try_new (gst_avi_index_entry, num))) goto out_of_mem; -- cgit