[PATCH 1/4] ntdll: Use correct output buffer size in RtlpNtEnumerateSubKey.

Torge Matthies wine at gitlab.winehq.org
Thu May 19 14:07:06 CDT 2022


From: Torge Matthies <tmatthies at codeweavers.com>

Signed-off-by: Torge Matthies <tmatthies at codeweavers.com>
---
 dlls/ntdll/reg.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/ntdll/reg.c b/dlls/ntdll/reg.c
index 294b724a5e5..106ee620cda 100644
--- a/dlls/ntdll/reg.c
+++ b/dlls/ntdll/reg.c
@@ -91,9 +91,9 @@ NTSTATUS WINAPI RtlpNtEnumerateSubKey( HANDLE handle, UNICODE_STRING *out, ULONG
   DWORD dwLen, dwResultLen;
   NTSTATUS ret;
 
-  if (out->Length)
+  if (out->MaximumLength)
   {
-    dwLen = out->Length + sizeof(KEY_BASIC_INFORMATION);
+    dwLen = out->MaximumLength + sizeof(KEY_BASIC_INFORMATION);
     info = RtlAllocateHeap( GetProcessHeap(), 0, dwLen );
     if (!info)
       return STATUS_NO_MEMORY;
@@ -111,7 +111,7 @@ NTSTATUS WINAPI RtlpNtEnumerateSubKey( HANDLE handle, UNICODE_STRING *out, ULONG
     out->Length = dwResultLen;
   else if (!ret)
   {
-    if (out->Length < info->NameLength)
+    if (out->MaximumLength < info->NameLength)
     {
       out->Length = dwResultLen;
       ret = STATUS_BUFFER_OVERFLOW;
-- 
GitLab


https://gitlab.winehq.org/wine/wine/-/merge_requests/98



More information about the wine-devel mailing list