diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:34 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:34 +0000 |
commit | 55672c83684c8f9207510358f92499d6682de647 (patch) | |
tree | 19abbde31be8376f54a6a458e8cdf33ea248c1da /libavfilter/graphparser.c | |
parent | 2839ff5e2f8ce0a38900d2a182e0c7d952a632db (diff) | |
download | ffmpeg-55672c83684c8f9207510358f92499d6682de647.tar.gz |
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
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 1e74542dfa..6b01f49650 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; } |