Browse Source

avfilter/af_amix: Use av_mallocz_array()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
f240740712
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/af_amix.c

+ 1
- 1
libavfilter/af_amix.c View File

@@ -249,7 +249,7 @@ static int config_output(AVFilterLink *outlink)
memset(s->input_state, INPUT_ON, s->nb_inputs);
s->active_inputs = s->nb_inputs;

s->input_scale = av_mallocz(s->nb_inputs * sizeof(*s->input_scale));
s->input_scale = av_mallocz_array(s->nb_inputs, sizeof(*s->input_scale));
if (!s->input_scale)
return AVERROR(ENOMEM);
s->scale_norm = s->active_inputs;


Loading…
Cancel
Save