Commit bc968469 authored by Alexandre Julliard's avatar Alexandre Julliard

notepad: Fix parsing of quoted command line.

parent ceb32f66
......@@ -629,6 +629,8 @@ static void HandleCommandLine(LPWSTR cmdline)
if (*cmdline == delimiter) cmdline++;
while (*cmdline == ' ') cmdline++;
ptr = cmdline;
while (*ptr == ' ' || *ptr == '-' || *ptr == '/')
{
......
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