mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 08:49:15 +00:00
WCMD_parse: allow slashes in command filenames.
This commit is contained in:
parent
d4b8654af4
commit
5a2e82d719
1 changed files with 1 additions and 1 deletions
|
@ -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++;
|
||||
|
|
Loading…
Reference in a new issue