Commit eaa74731 authored by Jactry Zeng's avatar Jactry Zeng Committed by Alexandre Julliard

explorer: Remove unnecessary backslash when parsing /select and /root.

parent 61ed9130
......@@ -639,6 +639,7 @@ static int copy_path_string(LPWSTR target, LPWSTR source)
while (*source && *source != ',') target[i++] = *source++;
target[i] = 0;
}
PathRemoveBackslashW(target);
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