- Change while (true) to an ASSERT(FALSE).

See issue #3616 for more details.

svn path=/trunk/; revision=35286
This commit is contained in:
Aleksey Bragin 2008-08-12 08:46:31 +00:00
parent e03a9212c0
commit 2c26076f3c

View file

@ -120,7 +120,7 @@ CmpQueryKeyName(IN PVOID ObjectBody,
IN KPROCESSOR_MODE PreviousMode)
{
DPRINT1("CmpQueryKeyName() called\n");
while (TRUE);
ASSERT(FALSE);
return STATUS_SUCCESS;
}