the develop environment is vs2008, the language is c++, when I release the problem,at beginning it run with out problem but after several minutes it stop and show error like that : HEAP[guessModel.exe]: Invalid Address specified to RtlFreeHeap( 003E0000, 7D7C737B ).
who can tell me the reason of the error. thank you very much.
the develop environment is vs2008, the language is c++, when I release the problem,at
Share
My guess is that you are trying to use the wild pointer. Either the pointer to the memory which got freed has been de-referenced or some invalid pointer has been passed to free function.
It is very hard to tell the reason without seeing the actual code. You can attach some debugging tools like WinDbg and get the cause for this error.