You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
tiff: fix memleak
Fixes CID1026764 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -453,8 +453,10 @@ static int tiff_unpack_strip(TiffContext *s, uint8_t *dst, int stride,
|
|||||||
if (!zbuf)
|
if (!zbuf)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
if (s->fill_order) {
|
if (s->fill_order) {
|
||||||
if ((ret = deinvert_buffer(s, src, size)) < 0)
|
if ((ret = deinvert_buffer(s, src, size)) < 0) {
|
||||||
|
av_free(zbuf);
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
ssrc = src = s->deinvert_buf;
|
ssrc = src = s->deinvert_buf;
|
||||||
}
|
}
|
||||||
ret = tiff_uncompress(zbuf, &outlen, src, size);
|
ret = tiff_uncompress(zbuf, &outlen, src, size);
|
||||||
|
Reference in New Issue
Block a user