rmdec: fix crash at end of file

Originally committed as revision 18018 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-03-16 20:22:39 +00:00
parent 9a10a0767c
commit c3df4a3bfe

View File

@ -774,7 +774,8 @@ static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
flags = (seq++ == 1) ? 2 : 0;
} else {
len=sync(s, &timestamp, &flags, &i, &pos);
st = s->streams[i];
if (len > 0)
st = s->streams[i];
}
if(len<0 || url_feof(s->pb))