[ntoskrnl/cm]

- advapi32 winetest registry tries to create a non-volatile child of a volatile parent. Comment out the warning ASSERT to let testman pass through this condition.

svn path=/trunk/; revision=44916
This commit is contained in:
Aleksey Bragin
2010-01-03 18:14:34 +00:00
parent 92a0a3cda8
commit b5bf3cb572
+1 -1
View File
@@ -460,7 +460,7 @@ CmpDoCreate(IN PHHIVE Hive,
!(ParseContext->CreateOptions & REG_OPTION_VOLATILE))
{
/* Children of volatile parents must also be volatile */
ASSERT(FALSE);
//ASSERT(FALSE);
Status = STATUS_CHILD_MUST_BE_VOLATILE;
goto Exit;
}