Skip to content
Snippets Groups Projects
Commit 1673436d authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/vf_pp7: use av_malloc_array()

parent 241f858c
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ static int config_input(AVFilterLink *inlink)
pp7->vsub = desc->log2_chroma_h;
pp7->temp_stride = FFALIGN(inlink->w + 16, 16);
pp7->src = av_malloc(pp7->temp_stride * (h + 8) * sizeof(uint8_t));
pp7->src = av_malloc_array(pp7->temp_stride, (h + 8) * sizeof(uint8_t));
if (!pp7->src)
return AVERROR(ENOMEM);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment