mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[SHELL32] 'Run' dialog box should accept URL (#1153)
Fix ShellExecCmdLine function. CORE-15455, CORE-11772
This commit is contained in:
parent
5525c81b2f
commit
c94ca8128d
1 changed files with 1 additions and 1 deletions
|
@ -2414,7 +2414,7 @@ HRESULT WINAPI ShellExecCmdLine(
|
|||
}
|
||||
}
|
||||
|
||||
if (UrlIsFileUrlW(lpCommand))
|
||||
if (PathIsURLW(lpCommand) || UrlIsW(lpCommand, URLIS_APPLIABLE))
|
||||
{
|
||||
StringCchCopyW(szFile, _countof(szFile), lpCommand);
|
||||
pchParams = NULL;
|
||||
|
|
Loading…
Reference in a new issue