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
pull/126/head
Vitor Sessak 17 years ago
parent 2839ff5e2f
commit 55672c8368
  1. 3
      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;
}

Loading…
Cancel
Save