cmdutils: remove unneeded null check
Fixes CID703769 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
eebde404bc
commit
35daf3ca81
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user