Commit 5a2e82d7 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

WCMD_parse: allow slashes in command filenames.

parent d4b8654a
......@@ -555,7 +555,7 @@ int p = 0;
case '\0':
return;
default:
while ((*s != '\0') && (*s != ' ') && (*s != '/')) {
while ((*s != '\0') && (*s != ' ')) {
if (p == 0) *p1++ = *s++;
else if (p == 1) *p2++ = *s++;
else s++;
......
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