mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Updated registry key flags. Added missing fix.
svn path=/trunk/; revision=4786
This commit is contained in:
parent
cf33a9ca6e
commit
be3c31a2c2
1 changed files with 2 additions and 2 deletions
|
@ -203,9 +203,9 @@ CmiVerifyRootKeyCell(PKEY_CELL RootKeyCell)
|
||||||
|
|
||||||
if (!(RootKeyCell->Flags & REG_KEY_ROOT_CELL))
|
if (!(RootKeyCell->Flags & REG_KEY_ROOT_CELL))
|
||||||
{
|
{
|
||||||
DbgPrint("Type is %.08x (should be %.08x)\n",
|
DbgPrint("Flags is %.08x (should be %.08x)\n",
|
||||||
RootKeyCell->Flags, REG_KEY_ROOT_CELL | REG_KEY_NAME_PACKED);
|
RootKeyCell->Flags, REG_KEY_ROOT_CELL | REG_KEY_NAME_PACKED);
|
||||||
assert(!(RootKeyCell->Type & REG_KEY_ROOT_CELL));
|
assert(!(RootKeyCell->Flags & (REG_KEY_ROOT_CELL | REG_KEY_NAME_PACKED)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue