mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:05:43 +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);
|
StringCchCopyW(szFile, _countof(szFile), lpCommand);
|
||||||
pchParams = NULL;
|
pchParams = NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue