Commit f7d3b671 authored by vitor's avatar vitor

Merge declaration and initialization

Commited in SoC by Vitor Sessak on 2008-04-10 16:46:33


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13301 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 91bb1324
...@@ -197,8 +197,7 @@ typedef struct AVFilterInOut { ...@@ -197,8 +197,7 @@ typedef struct AVFilterInOut {
static void free_inout(AVFilterInOut *head) static void free_inout(AVFilterInOut *head)
{ {
while (head) { while (head) {
AVFilterInOut *next; AVFilterInOut *next = head->next;
next = head->next;
av_free(head); av_free(head);
head = next; head = next;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment