Commit 4b9d81b4 authored by Sergey Guralnik's avatar Sergey Guralnik Committed by Alexandre Julliard

explorer: Use comma as argument delimiter.

parent 604172dd
......@@ -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;
......
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