[NTOS:IO] Replace an error message by an assert

This was expected to be done soon after r32518.

svn path=/trunk/; revision=64902
This commit is contained in:
Hervé Poussineau 2014-10-22 19:17:13 +00:00
parent a1bc1edda7
commit f42c9182f2

View file

@ -310,14 +310,8 @@ IopLoadServiceModule(
HANDLE CCSKey, ServiceKey;
PVOID BaseAddress;
DPRINT("IopLoadServiceModule(%wZ, 0x%p)\n", ServiceName, ModuleObject);
/* FIXME: This check may be removed once the bug is fixed */
if (ServiceName->Buffer == NULL)
{
DPRINT1("If you see this, please report to Fireball or hpoussin!\n");
return STATUS_UNSUCCESSFUL;
}
ASSERT(ServiceName->Length);
DPRINT("IopLoadServiceModule(%wZ, 0x%p)\n", ServiceName, ModuleObject);
if (ExpInTextModeSetup)
{