cmdutils: remove unneeded null check

Fixes CID703769
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-17 23:15:19 +02:00
parent eebde404bc
commit 35daf3ca81

View File

@ -380,7 +380,7 @@ int locate_option(int argc, char **argv, const OptionDef *options,
(po->name && !strcmp(optname, po->name))) (po->name && !strcmp(optname, po->name)))
return i; return i;
if (!po || po->flags & HAS_ARG) if (po->flags & HAS_ARG)
i++; i++;
} }
return 0; return 0;