This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/rmdec: Don't rely on unspecified order of evaluation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
master
Andreas Rheinhardt
4 years ago
parent
9a471c5437
commit
4666ce0aef
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/rmdec.c
+ 1
- 1
libavformat/rmdec.c
View File
@@ -1312,7 +1312,7 @@ static int ivr_read_header(AVFormatContext *s)
if (avio_r8(pb) != 6)
goto invalid_data;
avio_skip(pb, 12);
avio_s
kip(pb, avio_rb64(pb) + pos - avio_tell(s->pb)
);
avio_s
eek(pb, avio_rb64(pb) + pos, SEEK_SET
);
if (avio_r8(pb) != 8)
goto invalid_data;
avio_skip(pb, 8);
Write
Preview
Loading…
Cancel
Save