mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
- Get NtUnloadKey2 back to old behavior until its caller learns to properly handle various error codes.
See issue #4787 for more details. svn path=/trunk/; revision=42612
This commit is contained in:
parent
fb04896e11
commit
f0dc2c14f3
1 changed files with 5 additions and 0 deletions
|
@ -1130,6 +1130,7 @@ NTAPI
|
|||
NtUnloadKey2(IN POBJECT_ATTRIBUTES TargetKey,
|
||||
IN ULONG Flags)
|
||||
{
|
||||
#if 0
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||
UNICODE_STRING ObjectName;
|
||||
|
@ -1290,6 +1291,10 @@ Quickie:
|
|||
|
||||
/* Return status */
|
||||
return Status;
|
||||
#else
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
#endif
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue