Commit 55672c83 authored by Vitor Sessak's avatar Vitor Sessak

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
parent 2839ff5e
...@@ -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