[SHELL32]

- Fix typo from r54845. Fixes crash in shell32:shlexec test.

svn path=/trunk/; revision=56575
This commit is contained in:
Sylvain Petreolle 2012-05-13 17:47:49 +00:00
parent 8b006cca18
commit 0ee2dd3bd6

View file

@ -1501,7 +1501,7 @@ static UINT_PTR SHELL_quote_and_execute(LPCWSTR wcmd, LPCWSTR wszParameters, LPC
strcatW(wszQuotedCmd, L"\"");
if (wszParameters[0])
{
strcatW(wszQuotedCmd, " ");
strcatW(wszQuotedCmd, L" ");
strcatW(wszQuotedCmd, wszParameters);
}