explorer: Use comma as argument delimiter.
This commit is contained in:
parent
604172dd98
commit
4b9d81b4b5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue