[CMLIB] Revert previous commit to avoid future merges of other devs

because George is having an open Draft PR since July 2022,
which might also touch this file on master in some years.
And it ofc is easier for me to revert my work now, then for him to
go through the great lengths of merging his work then.
This commit is contained in:
Joachim Henze 2023-11-05 09:55:03 +01:00
parent 1ae6cb7a96
commit 7f80d5ee79

View file

@ -13,8 +13,6 @@ static BOOLEAN CMAPI
HvpWriteLog(
PHHIVE RegistryHive)
{
UNIMPLEMENTED_ONCE;
#if 0 // UNIMPLEMENTED
ULONG FileOffset;
UINT32 BufferSize;
UINT32 BitmapSize;
@ -24,6 +22,13 @@ HvpWriteLog(
ULONG LastIndex;
PVOID BlockPtr;
BOOLEAN Success;
static ULONG PrintCount = 0;
if (PrintCount++ == 0)
{
UNIMPLEMENTED;
}
return TRUE;
ASSERT(RegistryHive->ReadOnly == FALSE);
ASSERT(RegistryHive->BaseBlock->Length ==
@ -134,7 +139,7 @@ HvpWriteLog(
{
DPRINT("FileFlush failed\n");
}
#endif // UNIMPLEMENTED
return TRUE;
}