mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Return after cleanup in NtEnumerateKey.
svn path=/trunk/; revision=4819
This commit is contained in:
parent
392a5753ab
commit
819f2750e9
1 changed files with 8 additions and 3 deletions
|
@ -333,9 +333,9 @@ NtEnumerateKey(IN HANDLE KeyHandle,
|
|||
{
|
||||
if (KeyCell->HashTableOffset == (BLOCK_OFFSET)-1)
|
||||
{
|
||||
return(STATUS_NO_MORE_ENTRIES);
|
||||
ExReleaseResourceLite(&KeyObject->RegistryHive->HiveResource);
|
||||
ObDereferenceObject(KeyObject);
|
||||
return(STATUS_NO_MORE_ENTRIES);
|
||||
}
|
||||
|
||||
HashTableBlock = CmiGetBlock(RegistryHive, KeyCell->HashTableOffset, NULL);
|
||||
|
@ -1553,6 +1553,7 @@ NtNotifyChangeKey (IN HANDLE KeyHandle,
|
|||
IN BOOLEAN WatchSubtree)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1678,6 +1679,7 @@ NtReplaceKey (IN POBJECT_ATTRIBUTES ObjectAttributes,
|
|||
IN POBJECT_ATTRIBUTES ReplacedObjectAttributes)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1687,6 +1689,7 @@ NtRestoreKey (IN HANDLE KeyHandle,
|
|||
IN ULONG RestoreFlags)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1695,6 +1698,7 @@ NtSaveKey (IN HANDLE KeyHandle,
|
|||
IN HANDLE FileHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1705,6 +1709,7 @@ NtSetInformationKey (IN HANDLE KeyHandle,
|
|||
IN ULONG KeyInformationLength)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue