explorer: Use comma as argument delimiter.

This commit is contained in:
Sergey Guralnik 2013-05-14 15:11:28 +03:00 committed by Alexandre Julliard
parent 604172dd98
commit 4b9d81b4b5
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ static int copy_path_string(LPWSTR target, LPWSTR source)
}
else
{
while (*source && !isspaceW(*source)) target[i++] = *source++;
while (*source && *source != ',') target[i++] = *source++;
target[i] = 0;
}
return i;