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)
|
if (KeyCell->HashTableOffset == (BLOCK_OFFSET)-1)
|
||||||
{
|
{
|
||||||
return(STATUS_NO_MORE_ENTRIES);
|
|
||||||
ExReleaseResourceLite(&KeyObject->RegistryHive->HiveResource);
|
ExReleaseResourceLite(&KeyObject->RegistryHive->HiveResource);
|
||||||
ObDereferenceObject(KeyObject);
|
ObDereferenceObject(KeyObject);
|
||||||
|
return(STATUS_NO_MORE_ENTRIES);
|
||||||
}
|
}
|
||||||
|
|
||||||
HashTableBlock = CmiGetBlock(RegistryHive, KeyCell->HashTableOffset, NULL);
|
HashTableBlock = CmiGetBlock(RegistryHive, KeyCell->HashTableOffset, NULL);
|
||||||
|
@ -1552,7 +1552,8 @@ NtNotifyChangeKey (IN HANDLE KeyHandle,
|
||||||
IN ULONG Length,
|
IN ULONG Length,
|
||||||
IN BOOLEAN WatchSubtree)
|
IN BOOLEAN WatchSubtree)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1678,6 +1679,7 @@ NtReplaceKey (IN POBJECT_ATTRIBUTES ObjectAttributes,
|
||||||
IN POBJECT_ATTRIBUTES ReplacedObjectAttributes)
|
IN POBJECT_ATTRIBUTES ReplacedObjectAttributes)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1687,6 +1689,7 @@ NtRestoreKey (IN HANDLE KeyHandle,
|
||||||
IN ULONG RestoreFlags)
|
IN ULONG RestoreFlags)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1695,6 +1698,7 @@ NtSaveKey (IN HANDLE KeyHandle,
|
||||||
IN HANDLE FileHandle)
|
IN HANDLE FileHandle)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1704,7 +1708,8 @@ NtSetInformationKey (IN HANDLE KeyHandle,
|
||||||
IN PVOID KeyInformation,
|
IN PVOID KeyInformation,
|
||||||
IN ULONG KeyInformationLength)
|
IN ULONG KeyInformationLength)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue