mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[WIN32K]
Add some more debug output in case of a failed ASSERT svn path=/trunk/; revision=52091
This commit is contained in:
@@ -139,6 +139,13 @@ GdiPoolAllocate(
|
||||
/* Get a free section */
|
||||
ple = pPool->leReadyList.Flink;
|
||||
pSection = CONTAINING_RECORD(ple, GDI_POOL_SECTION, leReadyLink);
|
||||
if (pSection->cAllocCount >= pPool->cSlotsPerSection)
|
||||
{
|
||||
DPRINT1("pSection->cAllocCount=%ld, pPool->cSlotsPerSection=%ld\n",
|
||||
pSection->cAllocCount, pPool->cSlotsPerSection);
|
||||
DBG_DUMP_EVENT_LIST(&pPool->slhLog);
|
||||
ASSERT(FALSE);
|
||||
}
|
||||
ASSERT(pSection->cAllocCount < pPool->cSlotsPerSection);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user