Author: mjansen
Date: Fri Dec 30 20:54:47 2016
New Revision: 73491
URL:
http://svn.reactos.org/svn/reactos?rev=73491&view=rev
Log:
[KERNEL32] Fix a typo in IsShimInfrastructureDisabled.
Modified:
trunk/reactos/dll/win32/kernel32/client/appcache.c
Modified: trunk/reactos/dll/win32/kernel32/client/appcache.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/client/…
==============================================================================
--- trunk/reactos/dll/win32/kernel32/client/appcache.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/kernel32/client/appcache.c [iso-8859-1] Fri Dec 30 20:54:47
2016
@@ -97,8 +97,8 @@
KeyValuePartialInformation,
&KeyInfo,
sizeof(KeyInfo),
- &ResultLength),
- NtClose(KeyHandle);
+ &ResultLength);
+ NtClose(KeyHandle);
if ((NT_SUCCESS(Status)) &&
(KeyInfo.Type == REG_DWORD) &&
(KeyInfo.DataLength == sizeof(ULONG)) &&