Commit b2ead1ff authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

reg: Abort 'add' operation when parsing command-line arguments that are not switches.

parent dc57a265
...@@ -222,46 +222,48 @@ int reg_add(int argc, WCHAR *argvW[]) ...@@ -222,46 +222,48 @@ int reg_add(int argc, WCHAR *argvW[])
for (i = 3; i < argc; i++) for (i = 3; i < argc; i++)
{ {
if (argvW[i][0] == '/' || argvW[i][0] == '-') WCHAR *str;
if (argvW[i][0] != '/' && argvW[i][0] != '-')
goto invalid;
str = &argvW[i][1];
if (!lstrcmpiW(str, L"ve"))
{ {
WCHAR *str = &argvW[i][1]; if (value_empty) goto invalid;
value_empty = TRUE;
continue;
}
else if (!str[0] || str[1])
goto invalid;
if (!lstrcmpiW(str, L"ve")) switch (towlower(*str))
{ {
if (value_empty) goto invalid; case 'v':
value_empty = TRUE; if (value_name || !(value_name = argvW[++i]))
continue;
}
else if (!str[0] || str[1])
goto invalid; goto invalid;
break;
switch (towlower(*str)) case 't':
{ if (type || !(type = argvW[++i]))
case 'v':
if (value_name || !(value_name = argvW[++i]))
goto invalid;
break;
case 't':
if (type || !(type = argvW[++i]))
goto invalid;
break;
case 'd':
if (data || !(data = argvW[++i]))
goto invalid;
break;
case 's':
str = argvW[++i];
if (separator || !str || lstrlenW(str) != 1)
goto invalid;
separator = str[0];
break;
case 'f':
if (force) goto invalid;
force = TRUE;
break;
default:
goto invalid; goto invalid;
} break;
case 'd':
if (data || !(data = argvW[++i]))
goto invalid;
break;
case 's':
str = argvW[++i];
if (separator || !str || lstrlenW(str) != 1)
goto invalid;
separator = str[0];
break;
case 'f':
if (force) goto invalid;
force = TRUE;
break;
default:
goto invalid;
} }
} }
......
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