up vote 0 down vote favorite
1
share [g+] share [fb]

I wonder how to debug the following error:

Debug Assertion failure

Program: tomtoprog.exe
File: dbgheap.c
Line: 1044

Expression:_CrtIsValidHeapPointer(pUserData)
...

I'm quiet new to windows development with VC++ 6 ... is there a valgrind or something like that? The tomtoprog code is not written by me and its rather messy ... so something like valgrind would make my life way easier ...

Thanks in advance!

Best regards,

Zhengtonic

link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

It looks like you either have heap corruption or you are doing a double free of the same pointer. If you break into the debugger what is the last line of your code that is being called when the assert occurs?

The best way to check for issues like this is to use a page heap verifier like PageHeap.exe

Also see this related question on stack overflow

http://stackoverflow.com/questions/1069/heap-corruption-under-win32-how-to-locate

link|improve this answer
feedback

Hit 'Retry', and it'll break into the debugger. That'll give you the call stack. From there, you can find the part of your code that's at fault.

Hint: you're probably delete/free-ing something twice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.