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
This commit is contained in:
Vitor Sessak 2008-05-24 20:39:34 +00:00
parent 2839ff5e2f
commit 55672c8368

View File

@ -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;
}