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
Do not reject LIST tags in wav with size 4.
Fixes ticket
#745
. (cherry picked from commit
a8e93ce4cb
)
tags/n0.9.1
Carl Eugen Hoyos
14 years ago
parent
9aaf250fb3
commit
238c7ffd7d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/wav.c
+ 1
- 1
libavformat/wav.c
View File
@@ -507,7 +507,7 @@ static int wav_read_header(AVFormatContext *s,
goto break_loop;
case MKTAG('L', 'I', 'S', 'T'):
list_type = avio_rl32(pb);
if (size <
=
4) {
if (size < 4) {
av_log(s, AV_LOG_ERROR, "too short LIST");
return AVERROR_INVALIDDATA;
}
Write
Preview
Loading…
Cancel
Save