mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[NTOSKRNL] Revert 53ac8da and use UNIMPLEMENTED_DBGBREAK()
This commit is contained in:
@@ -1022,13 +1022,19 @@ IopInitializeBootDrivers(VOID)
|
||||
|
||||
/* Get highest group order index */
|
||||
IopGroupIndex = PpInitGetGroupOrderIndex(NULL);
|
||||
ASSERT(IopGroupIndex != 0xFFFF);
|
||||
if (IopGroupIndex == 0xFFFF)
|
||||
{
|
||||
UNIMPLEMENTED_DBGBREAK();
|
||||
}
|
||||
|
||||
/* Allocate the group table */
|
||||
IopGroupTable = ExAllocatePoolWithTag(PagedPool,
|
||||
IopGroupIndex * sizeof(LIST_ENTRY),
|
||||
TAG_IO);
|
||||
ASSERT(IopGroupTable != NULL);
|
||||
if (IopGroupTable == NULL)
|
||||
{
|
||||
UNIMPLEMENTED_DBGBREAK();
|
||||
}
|
||||
|
||||
/* Initialize the group table lists */
|
||||
for (i = 0; i < IopGroupIndex; i++) InitializeListHead(&IopGroupTable[i]);
|
||||
|
||||
Reference in New Issue
Block a user