mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/tiff: Perform multiply in tiff_unpack_lzma() as 64bit
This should make no difference as the value should not be able to be that large but its more correct this way Fixes CID1348138 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
890320b1c0
commit
f48b6b8b91
@ -408,7 +408,7 @@ static int tiff_unpack_lzma(TiffContext *s, AVFrame *p, uint8_t *dst, int stride
|
||||
const uint8_t *src, int size, int width, int lines,
|
||||
int strip_start, int is_yuv)
|
||||
{
|
||||
uint64_t outlen = width * lines;
|
||||
uint64_t outlen = width * (uint64_t)lines;
|
||||
int ret, line;
|
||||
uint8_t *buf = av_malloc(outlen);
|
||||
if (!buf)
|
||||
|
Loading…
Reference in New Issue
Block a user