diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-28 04:01:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-10 21:55:41 +0200 |
commit | 3af977d4d64409d4cd8a07c2d27ed880f61e0cd8 (patch) | |
tree | c895f2fa5cc200ad66f93c0589cd107cee1944d9 | |
parent | cb0d255e2fc548c8fbb50ba13fc1402a9f36783a (diff) | |
download | ffmpeg-3af977d4d64409d4cd8a07c2d27ed880f61e0cd8.tar.gz |
avfilter/graphdump: Fix pointer to local outside scope
Fixes CID1194435
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 18af0ce62da322176f7bd283b85314d2f41bee2c)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/graphdump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 45f64c0146..478afc654a 100644 --- a/libavfilter/graphdump.c +++ b/libavfilter/graphdump.c @@ -31,9 +31,10 @@ static int print_link_prop(AVBPrint *buf, AVFilterLink *link) { char *format; char layout[64]; + AVBPrint dummy_buffer = { 0 }; if (!buf) - buf = &(AVBPrint){ 0 }; /* dummy buffer */ + buf = &dummy_buffer; switch (link->type) { case AVMEDIA_TYPE_VIDEO: format = av_x_if_null(av_get_pix_fmt_name(link->format), "?"); |