From 55672c83684c8f9207510358f92499d6682de647 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 24 May 2008 20:39:34 +0000 Subject: [PATCH] Merge declaration and initialization Commited in SoC by Vitor Sessak on 2008-04-10 16:46:33 Originally committed as revision 13301 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 1e74542df..6b01f4965 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -197,8 +197,7 @@ typedef struct AVFilterInOut { static void free_inout(AVFilterInOut *head) { while (head) { - AVFilterInOut *next; - next = head->next; + AVFilterInOut *next = head->next; av_free(head); head = next; } -- 2.11.0