mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/hevc_ps: Check num_ref_loc_offsets
Fixes: Writing arbitrarily over the array end Fixes: 57812/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-4536557859373056 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
27e7857bd1
commit
80ac1fd148
@ -1392,6 +1392,10 @@ static int pps_multilayer_extension(GetBitContext *gb, AVCodecContext *avctx,
|
||||
pps->pps_scaling_list_ref_layer_id = get_bits(gb, 6);
|
||||
|
||||
pps->num_ref_loc_offsets = get_ue_golomb_long(gb);
|
||||
if (pps->num_ref_loc_offsets > FF_ARRAY_ELEMS(pps->ref_loc_offset_layer_id)) {
|
||||
pps->num_ref_loc_offsets = 0;
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
for (int i = 0; i < pps->num_ref_loc_offsets; i++) {
|
||||
pps->ref_loc_offset_layer_id[i] = get_bits(gb, 6);
|
||||
pps->scaled_ref_layer_offset_present_flag[i] = get_bits1(gb);
|
||||
|
Loading…
Reference in New Issue
Block a user