diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-05-15 22:55:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-09-25 13:51:37 +0200 |
commit | ff9dbf3b18f3f7c0be04a318a1a36e116527e8b3 (patch) | |
tree | e53e0c7b0e555226e0eed8d08ac4c9b35c2ac935 | |
parent | b409640d3cf8845b47b3ffee7a25e30eeed93445 (diff) | |
download | ffmpeg-ff9dbf3b18f3f7c0be04a318a1a36e116527e8b3.tar.gz |
avformat/act: Check ff_get_wav_header() for failure
Fixes: missing error check
Fixes: CID717495
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 5982da87e3464e7df529a169352748560d70ba80)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/act.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index 26425ca1bb..f6edfb44ab 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -66,6 +66,7 @@ static int read_header(AVFormatContext *s) AVIOContext *pb = s->pb; int size; AVStream* st; + int ret; int min,sec,msec; @@ -75,7 +76,9 @@ static int read_header(AVFormatContext *s) avio_skip(pb, 16); size=avio_rl32(pb); - ff_get_wav_header(s, pb, st->codecpar, size, 0); + ret = ff_get_wav_header(s, pb, st->codecpar, size, 0); + if (ret < 0) + return ret; /* 8000Hz (Fine-rec) file format has 10 bytes long |