Browse Source

avfilter/vsrc_cellauto: Use av_mallocz_array()

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

+ 2
- 2
libavfilter/vsrc_cellauto.c View File

@@ -122,7 +122,7 @@ static int init_pattern_from_string(AVFilterContext *ctx)
cellauto->h = (double)cellauto->w * M_PHI;
}

cellauto->buf = av_mallocz(sizeof(uint8_t) * cellauto->w * cellauto->h);
cellauto->buf = av_mallocz_array(sizeof(uint8_t) * cellauto->w, cellauto->h);
if (!cellauto->buf)
return AVERROR(ENOMEM);

@@ -182,7 +182,7 @@ static av_cold int init(AVFilterContext *ctx)
/* fill the first row randomly */
int i;

cellauto->buf = av_mallocz(sizeof(uint8_t) * cellauto->w * cellauto->h);
cellauto->buf = av_mallocz_array(sizeof(uint8_t) * cellauto->w, cellauto->h);
if (!cellauto->buf)
return AVERROR(ENOMEM);
if (cellauto->random_seed == -1)


Loading…
Cancel
Save