[SHELL32]
authorThomas Faber <thomas.faber@reactos.org>
Sun, 13 May 2012 10:33:46 +0000 (10:33 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sun, 13 May 2012 10:33:46 +0000 (10:33 +0000)
- Fix some typos from r54845. Fixes crash in shell32:shlexec test.

svn path=/trunk/; revision=56572

reactos/dll/win32/shell32/shlexec.cpp

index 8449dba..51f2d7f 100644 (file)
@@ -819,7 +819,7 @@ static UINT SHELL_FindExecutable(LPCWSTR lpPath, LPCWSTR lpFile, LPCWSTR lpOpera
     {
         /* Toss the leading dot */
         extension++;
-        if (GetProfileStringW(L"extesions", extension, L"", command, sizeof(command) / sizeof(WCHAR)) > 0)
+        if (GetProfileStringW(L"extensions", extension, L"", command, sizeof(command) / sizeof(WCHAR)) > 0)
         {
             if (wcslen(command) != 0)
             {
@@ -887,7 +887,7 @@ static unsigned dde_connect(const WCHAR* key, const WCHAR* start, WCHAR* ddeexec
     BOOL unicode = !(GetVersion() & 0x80000000);
 
     wcscpy(regkey, key);
-    wcscpy(endkey, L"application");
+    wcscpy(endkey, L"\\application");
     applen = sizeof(app);
     if (RegQueryValueW(HKEY_CLASSES_ROOT, regkey, app, &applen) != ERROR_SUCCESS)
     {