mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/jpeg2000dec: zero Jpeg2000QuantStyle structure before use in get_qcd()
Fixes: msan_uninit-mem_7f50b84aac30_6823_mjp2.mov Fixes use of uninitialized memory Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
833501657b
commit
55fa898969
|
@ -540,6 +540,8 @@ static int get_qcd(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q,
|
|||
Jpeg2000QuantStyle tmp;
|
||||
int compno, ret;
|
||||
|
||||
memset(&tmp, 0, sizeof(tmp));
|
||||
|
||||
if ((ret = get_qcx(s, n, &tmp)) < 0)
|
||||
return ret;
|
||||
for (compno = 0; compno < s->ncomponents; compno++)
|
||||
|
|
Loading…
Reference in New Issue