mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
avcodec/tiff: Avoid loosing allocated geotag values
Fixes memleak Fixes: 2076/clusterfuzz-testcase-minimized-6542640243802112 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1e6ee86d92
commit
d7cbeab4c1
@ -1140,6 +1140,8 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
|
||||
bytestream2_seek(&s->gb, pos + s->geotags[i].offset, SEEK_SET);
|
||||
if (bytestream2_get_bytes_left(&s->gb) < s->geotags[i].count)
|
||||
return AVERROR_INVALIDDATA;
|
||||
if (s->geotags[i].val)
|
||||
return AVERROR_INVALIDDATA;
|
||||
ap = av_malloc(s->geotags[i].count);
|
||||
if (!ap) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "Error allocating temporary buffer\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user