When delete executes the program crashes. i tried following code to check for corrupted heap block but if condition results false.
int rc;
if (_HEAPOK != (rc = _heapchk()))
{
switch(rc)
{
case _HEAPEMPTY:
puts("The heap has not been initialized.");
break;
case _HEAPBADNODE:
puts("A memory node is corrupted or the heap is damaged.");
break;
case _HEAPBADBEGIN:
puts("The heap specified is not valid.");
break;
}
}
complete code can be found here: http://cyberkinetica.homeunix.net/os2tk45/xpg4ref/157_L2__heapchkValidateDefa.html
Pls. let me know how to debug in this case.
EDIT:
I tried to debug in file:
...\Microsoft Visual Studio 9.0\VC\crt\src\dbgheap.c
and it's failing in following function:
extern "C" _CRTIMP int __cdecl _CrtIsValidHeapPointer(
const void * pUserData)
Comments on this function states:
Purpose: Verify pointer is not only a valid pointer but also that it is from the 'local' heap. Pointers from another copy of the C runtime (even in the same process) will be caught.
what is this local heap and does it help in finding out the issue?
Thanks.

_HEAPOKso experts might have some suggestions i should follow. posting complete code is ... let me see if possible. – Azodious Jul 25 '11 at 12:29new. Don't usedelete. Use well-written, robust resource-managing containers if you must allocate dynamically. As a bonus, you will never have to spend nights writing_heapchk(). – Kerrek SB Jul 25 '11 at 12:40