mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Avoid a null pointer dereference on oom when decoding smacker.
Fixes ticket #2728.
This commit is contained in:
parent
a1dbe49d02
commit
90bd75e6eb
@ -261,6 +261,8 @@ static int smacker_decode_header_tree(SmackVContext *smk, GetBitContext *gb, int
|
||||
huff.maxlength = 0;
|
||||
huff.current = 0;
|
||||
huff.values = av_mallocz(huff.length * sizeof(int));
|
||||
if (!huff.values)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
if (smacker_decode_bigtree(gb, &huff, &ctx) < 0)
|
||||
err = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user