mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/hevc_ps: --typo
Fixes: null pointer dereference Fixes: 67737/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HEVC_fuzzer-4858162608930816 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
aeb13b03be
commit
d58037c18e
@ -460,7 +460,7 @@ int ff_hevc_decode_nal_vps(GetBitContext *gb, AVCodecContext *avctx,
|
||||
int ret = AVERROR_INVALIDDATA;
|
||||
HEVCVPS *vps;
|
||||
|
||||
if (ps->pps_list[vps_id]) {
|
||||
if (ps->vps_list[vps_id]) {
|
||||
const HEVCVPS *vps1 = ps->vps_list[vps_id];
|
||||
if (vps1->data_size == nal_size &&
|
||||
!memcmp(vps1->data, gb->buffer, vps1->data_size))
|
||||
|
Loading…
Reference in New Issue
Block a user