diff options
author | Marton Balint <cus@passwd.hu> | 2012-10-28 01:19:34 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-11-01 15:46:18 +0100 |
commit | abd49a75240f71a3a8c6281c4838a6de42ae930b (patch) | |
tree | 3d934c00b43f4fc5d01a8bfae477870961bb79ae /ffplay.c | |
parent | 65f6c42a9f12211aff4691ffb17c7cbc77972d87 (diff) | |
download | ffmpeg-abd49a75240f71a3a8c6281c4838a6de42ae930b.tar.gz |
ffplay: always free inputs and outputs in configure_filtergraph
Fixes Coverity CID 733791.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1681,7 +1681,7 @@ static int configure_filtergraph(AVFilterGraph *graph, const char *filtergraph, goto fail; } - return avfilter_graph_config(graph, NULL); + ret = avfilter_graph_config(graph, NULL); fail: avfilter_inout_free(&outputs); avfilter_inout_free(&inputs); |