mirror of https://git.ffmpeg.org/ffmpeg.git
jpeg2000: zero reslevel array on allocation
prevent use of uninitialized values Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
912ce9dd20
commit
09927f3eaa
|
@ -224,7 +224,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
|
|||
if (!comp->i_data)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
comp->reslevel = av_malloc_array(codsty->nreslevels, sizeof(*comp->reslevel));
|
||||
comp->reslevel = av_calloc(codsty->nreslevels, sizeof(*comp->reslevel));
|
||||
if (!comp->reslevel)
|
||||
return AVERROR(ENOMEM);
|
||||
/* LOOP on resolution levels */
|
||||
|
|
Loading…
Reference in New Issue