avformat/imx: Check palette chunk size
Fixes: out of array write Fixes: 32116/clusterfuzz-testcase-minimized-ffmpeg_dem_SIMBIOSIS_IMX_fuzzer-6702533894602752 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit f7a515044766426cf3cac20bdc091b700f00a458) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
de9f4351fa
commit
45f40cec3a
@ -113,6 +113,8 @@ retry:
|
|||||||
imx->first_video_packet_pos = pos;
|
imx->first_video_packet_pos = pos;
|
||||||
break;
|
break;
|
||||||
case 0xAA98:
|
case 0xAA98:
|
||||||
|
if (chunk_size > 256 * 3)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
for (int i = 0; i < chunk_size / 3; i++) {
|
for (int i = 0; i < chunk_size / 3; i++) {
|
||||||
unsigned r = avio_r8(pb) << 18;
|
unsigned r = avio_r8(pb) << 18;
|
||||||
unsigned g = avio_r8(pb) << 10;
|
unsigned g = avio_r8(pb) << 10;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user