mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
[ADVAPI32]
- Fix RegQueryInfoKeyW as per CORE-1136 svn path=/trunk/; revision=63776
This commit is contained in:
parent
0f63f7e80c
commit
0e1dff05eb
1 changed files with 1 additions and 1 deletions
|
@ -3903,7 +3903,7 @@ RegQueryInfoKeyW(HKEY hKey,
|
|||
NULL,
|
||||
0,
|
||||
lpcbSecurityDescriptor);
|
||||
if (!NT_SUCCESS(Status))
|
||||
if (!NT_SUCCESS(Status) && Status != STATUS_BUFFER_TOO_SMALL)
|
||||
{
|
||||
if (lpClass != NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue