[FFmpeg-cvslog] r13301 - trunk/libavfilter/graphparser.c

vitor subversion
Sat May 24 22:39:34 CEST 2008


Author: vitor
Date: Sat May 24 22:39:34 2008
New Revision: 13301

Log:
Merge declaration and initialization
Commited in SoC by Vitor Sessak on 2008-04-10 16:46:33


Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:39:34 2008
@@ -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;
     }




More information about the ffmpeg-cvslog mailing list