diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-05-15 22:55:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-05-26 11:54:05 +0200 |
commit | 5982da87e3464e7df529a169352748560d70ba80 (patch) | |
tree | 9938a729c7f7ccb60a4bff148a8bffccbca81a11 | |
parent | cb5be590cd115b7831c9cbcfe4961a7e8ff65420 (diff) | |
download | ffmpeg-5982da87e3464e7df529a169352748560d70ba80.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>
-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 6dd9f62a87..da73fcceca 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -68,6 +68,7 @@ static int read_header(AVFormatContext *s) AVIOContext *pb = s->pb; int size; AVStream* st; + int ret; int min,sec,msec; @@ -77,7 +78,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 |