mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
[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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user