Debug Visual C++ memory allocation problems

前端 未结 2 1604
逝去的感伤
逝去的感伤 2021-01-26 06:53

I\'m debugging a software which crashes eventually with one of the following messages:

1. DAMAGE: after normal block (#24729280) at 0x00D710E0
2. Debug Assertion         


        
2条回答
  •  遥遥无期
    2021-01-26 07:10

    Before using gFlags/PageHeap I suggest you to check for Access Violation exception. First attach the process by using Build->Start Debug->Attach to process option. Once it is attached enable the access violation exception by going to Debug->Exceptions select Access Violation and select the check box Stop Always. Then check whether your debugger catches any access violation exceptions.

提交回复
热议问题