mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[SHELL32]
- Quote paths containing spaces when executing shell commands. Patch by Huw Campbell. CORE-7542 #resolve svn path=/trunk/; revision=60895
This commit is contained in:
@@ -238,7 +238,12 @@ BOOL COpenWithList::Execute(COpenWithList::SApp *pApp, LPCWSTR pwszFilePath)
|
||||
--cchRemaining;
|
||||
}
|
||||
else if (pApp->wszCmd[++i] == '1')
|
||||
StringCchCopyExW(pszEnd, cchRemaining, pwszFilePath, &pszEnd, &cchRemaining, 0);
|
||||
{
|
||||
if (StrChrW(pwszFilePath, L' ') && cchRemaining > 3)
|
||||
StringCchPrintfExW(pszEnd, cchRemaining, &pszEnd, &cchRemaining, 0, L"\"%ls\"", pwszFilePath);
|
||||
else
|
||||
StringCchCopyExW(pszEnd, cchRemaining, pwszFilePath, &pszEnd, &cchRemaining, 0);
|
||||
}
|
||||
}
|
||||
/* NULL-terminate the command string */
|
||||
if (cchRemaining > 0)
|
||||
@@ -1182,7 +1187,7 @@ HRESULT WINAPI COpenWithMenu::QueryContextMenu(
|
||||
/* Load applications list */
|
||||
m_pAppList->Load();
|
||||
m_pAppList->LoadRecommended(m_wszPath);
|
||||
|
||||
|
||||
/* Create submenu only if there is more than one application and menu has a default item */
|
||||
if (m_pAppList->GetRecommendedCount() > 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user