[SHELL32] Command 'start C:' should open 'C:\' (#2642)

Based on JIRA user amaneureka's idea.
In SHELL_execute function, add a backslash for Drive "C:", "D:" or "E:" etc.
CORE-16384
This commit is contained in:
Katayama Hirofumi MZ 2020-04-25 11:01:20 +09:00 committed by GitHub
parent 950124bd07
commit d32858413d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1824,6 +1824,14 @@ static BOOL SHELL_execute(LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc)
if(l > dwApplicationNameLen) dwApplicationNameLen = l + 1;
wszApplicationName = (LPWSTR)HeapAlloc(GetProcessHeap(), 0, dwApplicationNameLen * sizeof(WCHAR));
memcpy(wszApplicationName, sei_tmp.lpFile, l * sizeof(WCHAR));
if (wszApplicationName[2] == 0 && wszApplicationName[1] == L':' &&
((L'A' <= wszApplicationName[0] && wszApplicationName[0] <= L'Z') ||
(L'a' <= wszApplicationName[0] && wszApplicationName[0] <= L'z')))
{
// 'C:' --> 'C:\'
PathAddBackslashW(wszApplicationName);
}
}
wszParameters = parametersBuffer;