mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-09 16:19:35 +00:00
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
This commit is contained in:
parent
8095a014a0
commit
a59a773413
@ -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")) {
|
||||
|
Loading…
Reference in New Issue
Block a user