Commit cf7cb993 authored by Torge Matthies's avatar Torge Matthies Committed by Alexandre Julliard

ntdll: Use correct output buffer size in RtlpNtEnumerateSubKey.

parent fd5c680a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment