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

This commit is contained in:
Jactry Zeng 2014-11-20 21:22:29 +08:00 committed by Alexandre Julliard
parent 61ed9130bf
commit eaa747311f
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}