Commit 41003da9 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/avfilter: fix use of uninitialized pointer

Fixes CID1163852
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 40c218c6
......@@ -999,7 +999,7 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
int (*filter_frame)(AVFilterLink *, AVFrame *);
AVFilterContext *dstctx = link->dst;
AVFilterPad *dst = link->dstpad;
AVFrame *out;
AVFrame *out = NULL;
int ret;
AVFilterCommand *cmd= link->dst->command_queue;
int64_t pts;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment