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,9 +222,12 @@ int reg_add(int argc, WCHAR *argvW[]) ...@@ -222,9 +222,12 @@ 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;
{
WCHAR *str = &argvW[i][1]; if (argvW[i][0] != '/' && argvW[i][0] != '-')
goto invalid;
str = &argvW[i][1];
if (!lstrcmpiW(str, L"ve")) if (!lstrcmpiW(str, L"ve"))
{ {
...@@ -263,7 +266,6 @@ int reg_add(int argc, WCHAR *argvW[]) ...@@ -263,7 +266,6 @@ int reg_add(int argc, WCHAR *argvW[])
goto invalid; goto invalid;
} }
} }
}
if (value_name && value_empty) if (value_name && value_empty)
goto invalid; 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