- 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:
Aleksey Bragin 2009-08-11 13:01:42 +00:00
parent fb04896e11
commit f0dc2c14f3

View file

@ -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