mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[USER32] Improve CliGetImeHotKeysFromRegistry
CORE-11700
This commit is contained in:
parent
dff4579bd6
commit
10acb335fa
1 changed files with 4 additions and 4 deletions
|
@ -345,19 +345,19 @@ BOOL FASTCALL CliGetImeHotKeysFromRegistry(VOID)
|
|||
error = RegOpenKeyExW(HKEY_CURRENT_USER,
|
||||
L"Control Panel\\Input Method\\Hot Keys",
|
||||
0,
|
||||
KEY_ALL_ACCESS,
|
||||
KEY_READ,
|
||||
&hKey);
|
||||
if (error != ERROR_SUCCESS)
|
||||
return ret;
|
||||
|
||||
for (dwIndex = 0; ; ++dwIndex)
|
||||
for (dwIndex = 0; dwIndex < 1000; ++dwIndex)
|
||||
{
|
||||
cchKeyName = _countof(szKeyName);
|
||||
error = RegEnumKeyExW(hKey, dwIndex, szKeyName, &cchKeyName, NULL, NULL, NULL, NULL);
|
||||
if (error == ERROR_NO_MORE_ITEMS || error != ERROR_SUCCESS)
|
||||
if (error != ERROR_SUCCESS)
|
||||
break;
|
||||
|
||||
szKeyName[_countof(szKeyName) - 1] = 0;
|
||||
szKeyName[_countof(szKeyName) - 1] = 0; /* Avoid stack overrun */
|
||||
|
||||
if (CliSetSingleHotKey(szKeyName, hKey))
|
||||
ret = TRUE;
|
||||
|
|
Loading…
Reference in a new issue