mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/avfilter: fix use of uninitialized pointer
Fixes CID1163852 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
40c218c60d
commit
41003da94a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue