Check for NULL keyvalue in RegEnumKeyExA/W.
diff --git a/dlls/advapi32/registry.c b/dlls/advapi32/registry.c
index 2d539b7..afe8432 100644
--- a/dlls/advapi32/registry.c
+++ b/dlls/advapi32/registry.c
@@ -297,6 +297,8 @@
if (reserved) return ERROR_INVALID_PARAMETER;
+ if (!hkey) return ERROR_INVALID_HANDLE;
+
status = NtEnumerateKey( hkey, index, KeyNodeInformation,
buffer, sizeof(buffer), &total_size );
@@ -358,6 +360,8 @@
if (reserved) return ERROR_INVALID_PARAMETER;
+ if (!hkey) return ERROR_INVALID_HANDLE;
+
status = NtEnumerateKey( hkey, index, KeyNodeInformation,
buffer, sizeof(buffer), &total_size );