[EXPLORER_NEW]

- Revert r56865, it duplicates same action (expanding the var), spotted by Thomas Faber.
See issue #6053 for more details.

svn path=/trunk/; revision=56887
This commit is contained in:
Aleksey Bragin 2012-07-14 11:54:07 +00:00
parent 0c286ecb18
commit d096ba484c

View file

@ -364,7 +364,6 @@ static BOOL ProcessRunKeys(HKEY hkRoot, LPCWSTR szKeyName, BOOL bDelete,
{
DWORD nValLength=nMaxValue, nDataLength=nMaxCmdLine;
DWORD type;
WCHAR szCmdLineExp[MAX_PATH+1]= L"\0";
--i;
@ -391,8 +390,7 @@ static BOOL ProcessRunKeys(HKEY hkRoot, LPCWSTR szKeyName, BOOL bDelete,
continue;
}
ExpandEnvironmentStrings(szCmdLine, szCmdLineExp, sizeof(szCmdLineExp));
if ((res=runCmd(szCmdLineExp, NULL, bSynchronous, FALSE))==INVALID_RUNCMD_RETURN)
if ((res=runCmd(szCmdLine, NULL, bSynchronous, FALSE))==INVALID_RUNCMD_RETURN)
{
printf("Error running cmd #%ld (%ld)\n", i, GetLastError());
}