avcodec/jpeg2000dwt: Check ndeclevels before calling dwt_decode*()
Fixes out of array access Fixes: 01859c9a9ac6cd60a008274123275574/asan_heap-oob_1dff571_8250_50d3d1611e294c3519fd1fa82198b69b.avi Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0cd23e0d1e
commit
8ef86669ca
@ -555,6 +555,9 @@ int ff_dwt_encode(DWTContext *s, void *t)
|
|||||||
|
|
||||||
int ff_dwt_decode(DWTContext *s, void *t)
|
int ff_dwt_decode(DWTContext *s, void *t)
|
||||||
{
|
{
|
||||||
|
if (s->ndeclevels == 0)
|
||||||
|
return 0;
|
||||||
|
|
||||||
switch (s->type) {
|
switch (s->type) {
|
||||||
case FF_DWT97:
|
case FF_DWT97:
|
||||||
dwt_decode97_float(s, t);
|
dwt_decode97_float(s, t);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user