mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
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:
parent
2839ff5e2f
commit
55672c8368
@ -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…
x
Reference in New Issue
Block a user