mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/graphdump: fix use of uninitialized variables
In case of av_bprint_finalize failed. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4a3aa77d74
commit
bbb68be0cc
@ -154,7 +154,7 @@ static void avfilter_graph_dump_to_buf(AVBPrint *buf, AVFilterGraph *graph)
|
||||
char *avfilter_graph_dump(AVFilterGraph *graph, const char *options)
|
||||
{
|
||||
AVBPrint buf;
|
||||
char *dump;
|
||||
char *dump = NULL;
|
||||
|
||||
av_bprint_init(&buf, 0, AV_BPRINT_SIZE_COUNT_ONLY);
|
||||
avfilter_graph_dump_to_buf(&buf, graph);
|
||||
|
Loading…
Reference in New Issue
Block a user