beerfizz wrote on Tuesday, September 13, 2005:
I have an app which deletes and creates tasks.
It appears that I have an infinate loop on the following code in PortMalloc:
while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock ) )
{
pxPreviousBlock = pxBlock;
pxBlock = pxBlock->pxNextFreeBlock;
}
This is where it is looking for, I guess a ‘first fit’ block. Any ideas? Has something gotten corrupted?