aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-07 03:49:06 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-14 00:21:49 +0200
commiteec20b665a9e86d3d6824f0a01fb49378243829c (patch)
tree8c0dce05871ce4c34718f0ec12881cba5cf09e45
parent4f0fecf9fa83a0d7724458e6d133d3ef4d5d3bc1 (diff)
downloadffmpeg-eec20b665a9e86d3d6824f0a01fb49378243829c.tar.gz
avcodec/targa_y216dec: Fix width type
Fixes out of array access Fixes: 1376/clusterfuzz-testcase-minimized-6361794975105024 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3e56db892600c2fbe34782c6140f1ee832a2c344) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/targa_y216dec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/targa_y216dec.c b/libavcodec/targa_y216dec.c
index 21b3d35d67..443d48a92f 100644
--- a/libavcodec/targa_y216dec.c
+++ b/libavcodec/targa_y216dec.c
@@ -35,7 +35,8 @@ static int y216_decode_frame(AVCodecContext *avctx, void *data,
{
AVFrame *pic = data;
const uint16_t *src = (uint16_t *)avpkt->data;
- uint16_t *y, *u, *v, aligned_width = FFALIGN(avctx->width, 4);
+ uint16_t *y, *u, *v;
+ int aligned_width = FFALIGN(avctx->width, 4);
int i, j, ret;
if (avpkt->size < 4 * avctx->height * aligned_width) {