summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:39:34 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:39:34 +0000
commit55672c83684c8f9207510358f92499d6682de647 (patch)
tree19abbde31be8376f54a6a458e8cdf33ea248c1da /libavfilter/graphparser.c
parent2839ff5e2f8ce0a38900d2a182e0c7d952a632db (diff)
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.c3
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;
}