mirror of https://git.ffmpeg.org/ffmpeg.git
rmdec: Check return value of more avio_seek calls
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 7e4111cfe2
)
This commit is contained in:
parent
4a721b18ed
commit
8449cebc90
|
@ -905,7 +905,9 @@ static int64_t rm_read_dts(AVFormatContext *s, int stream_index,
|
|||
if(rm->old_format)
|
||||
return AV_NOPTS_VALUE;
|
||||
|
||||
avio_seek(s->pb, pos, SEEK_SET);
|
||||
if (avio_seek(s->pb, pos, SEEK_SET) < 0)
|
||||
return AV_NOPTS_VALUE;
|
||||
|
||||
rm->remaining_len=0;
|
||||
for(;;){
|
||||
int seq=1;
|
||||
|
|
Loading…
Reference in New Issue