[common] options: Fix regression in option parsing logic

This commit is contained in:
Netboy3 2023-05-02 14:26:52 -04:00 committed by Geoffrey McRae
parent 9d66a68403
commit 53525847fd

View File

@ -346,6 +346,7 @@ bool option_parse(int argc, char * argv[])
o = state.options[i]; o = state.options[i];
if (o->type != OPTION_TYPE_BOOL && a < argc - 1) if (o->type != OPTION_TYPE_BOOL && a < argc - 1)
{ {
++a;
char * v = argv[a]; char * v = argv[a];
//ltrim //ltrim