[FFmpeg-cvslog] avcodec/exr: Cleanup befor return
Michael Niedermayer
git at videolan.org
Fri Dec 22 01:51:34 EET 2023
ffmpeg | branch: release/4.4 | Michael Niedermayer <michael at niedermayer.cc> | Sun Apr 16 15:18:45 2023 +0200| [6d0161f742c06e45eea6a1f020b723c10eb34ea0] | committer: Michael Niedermayer
avcodec/exr: Cleanup befor return
Fixes: leaks
Fixes: 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-6703454090559488
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 885ff3b8798791eb2b0f53360a2ab4b1f9c5f6dc)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d0161f742c06e45eea6a1f020b723c10eb34ea0
---
libavcodec/exr.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index e3effad2e7..c903ae12f0 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -1939,8 +1939,10 @@ static int decode_header(EXRContext *s, AVFrame *frame)
bytestream2_get_buffer(gb, key, FFMIN(sizeof(key) - 1, var_size));
if (strncmp("scanlineimage", key, var_size) &&
- strncmp("tiledimage", key, var_size))
- return AVERROR_PATCHWELCOME;
+ strncmp("tiledimage", key, var_size)) {
+ ret = AVERROR_PATCHWELCOME;
+ goto fail;
+ }
continue;
} else if ((var_size = check_header_variable(s, "preview",
@@ -1948,12 +1950,16 @@ static int decode_header(EXRContext *s, AVFrame *frame)
uint32_t pw = bytestream2_get_le32(gb);
uint32_t ph = bytestream2_get_le32(gb);
uint64_t psize = pw * ph;
- if (psize > INT64_MAX / 4)
- return AVERROR_INVALIDDATA;
+ if (psize > INT64_MAX / 4) {
+ ret = AVERROR_INVALIDDATA;
+ goto fail;
+ }
psize *= 4;
- if ((int64_t)psize >= bytestream2_get_bytes_left(gb))
- return AVERROR_INVALIDDATA;
+ if ((int64_t)psize >= bytestream2_get_bytes_left(gb)) {
+ ret = AVERROR_INVALIDDATA;
+ goto fail;
+ }
bytestream2_skip(gb, psize);
More information about the ffmpeg-cvslog
mailing list