Reputation: 111
I'm writing a Windows C++ program in Visual Studio 2010 and have heap corruption. The !heap and !avrf debugger extensions from Application Verifier have several tools that sound quite useful for tracking this down, however I am unclear as to how to effectively use Application Verifier. For instance, Application Verifier documentation states:
You can use
!avrf -hp -a Address
to display all heap space operations that affected the specified Address.
Where exactly does one type this command? (Yes, I know Address needs to be replaced by an actual address.) Does it need to be prefixed by anything?
Upvotes: 2
Views: 603
Reputation: 29450
It's a Windows debugger command. You can see the help for the command here.
Upvotes: 2