diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-24 04:14:52 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-24 04:14:52 +0100 |
commit | 41003da94a59cd014d05b3dd1d33a5f9ecf3ccda (patch) | |
tree | 33704022bbb33ef4362ac1f93b79e296814b9849 | |
parent | 40c218c60dceb68526a0fa9eacb0328bedf38260 (diff) | |
download | ffmpeg-41003da94a59cd014d05b3dd1d33a5f9ecf3ccda.tar.gz |
avfilter/avfilter: fix use of uninitialized pointer
Fixes CID1163852
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index f9f6d6c83a..46f81f2d9e 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -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; |