Commit a59a7734 authored by Vitor Sessak's avatar Vitor Sessak

Cosmetics: if(x != NULL) -> if(x)

Commited in SoC by Vitor Sessak on 2008-04-12 14:11:19

Originally committed as revision 13311 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8095a014
......@@ -307,8 +307,8 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
} while (chr == ',' || chr == ';');
head = inout;
for (; inout != NULL; inout = inout->next) {
if(inout->filter == NULL)
for (; inout; inout = inout->next) {
if(!inout->filter)
continue; // Already processed
if(!strcmp(inout->name, "in")) {
......
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