avidec: move eof check before continue.
Fixes a infinite loop Fixes half of Ticket800 Bug found by Oana Stratulat Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1232,6 +1232,9 @@ static int avi_read_idx1(AVFormatContext *s, int size)
|
|||||||
|
|
||||||
/* Read the entries and sort them in each stream component. */
|
/* Read the entries and sort them in each stream component. */
|
||||||
for(i = 0; i < nb_index_entries; i++) {
|
for(i = 0; i < nb_index_entries; i++) {
|
||||||
|
if(url_feof(pb))
|
||||||
|
return -1;
|
||||||
|
|
||||||
tag = avio_rl32(pb);
|
tag = avio_rl32(pb);
|
||||||
flags = avio_rl32(pb);
|
flags = avio_rl32(pb);
|
||||||
pos = avio_rl32(pb);
|
pos = avio_rl32(pb);
|
||||||
@@ -1254,8 +1257,6 @@ static int avi_read_idx1(AVFormatContext *s, int size)
|
|||||||
|
|
||||||
av_dlog(s, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
|
av_dlog(s, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
|
||||||
|
|
||||||
if(url_feof(pb))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if(last_pos == pos)
|
if(last_pos == pos)
|
||||||
avi->non_interleaved= 1;
|
avi->non_interleaved= 1;
|
||||||
|
Reference in New Issue
Block a user