Tagged Questions
The application-verifier tag has no wiki summary.
2
votes
1answer
690 views
Configuring “Application Verifier” In Visual Studio
I see that I can launch application verifier within Visual Studio 2008 via Debug->Start With Application Verifier. But the documentation for app verifier shows a bunch of options that can be ...
2
votes
1answer
191 views
What is MS Application Verifier for?
I've got MS Application Verifier installed with some SDK. How do I make any use of it, practically? Are there any simple examples/explanations?
1
vote
2answers
160 views
Finding location of crash using Map file
I am investigating a faulty code. Application verifier shows heap is corrupted after below call:
AA!Class::Function+dbaf
I have map file with me.Please help me how to reach on line number using ...
1
vote
0answers
207 views
Microsoft Application Verifier 4.0 (x64) sees StardardIn Handles as Invalid
I have the following C code:
#include <windows.h>
#include <stdio.h>
int main()
{
HANDLE hIN = GetStdHandle(STD_INPUT_HANDLE);
int rc = MsgWaitForMultipleObjects(1,
...
1
vote
1answer
287 views
Access violation in MSVBVM60.dll with VB6 and C++ dll
I am investigating a crash of an application I am working on. The visual basic part is a simple form, which creates PictureBoxes and buttons. Calls are made to the C+ dll upon button clicks. The ...
1
vote
1answer
595 views
VS2010 Ultimate beta 2: Where is application verifier?
In VSTS2008 there used to be Debug -> Start With Application Verifier, which doesn't exist in VS2010 Ultimate beta 2. Where has it gone?
0
votes
0answers
26 views
0
votes
5answers
3k views
How to use Application Verifier to find memory leaks
I want to find memory leaks in my application using standard utilities.
Previously I used my own memory allocator, but other people (yes, you AlienFluid) suggested to use Microsoft's Application ...
0
votes
1answer
302 views
ApplicationVerifier is not detecting handle leaks, what do I do?
I did select the executable correctly, because I can get it to respond to certain things I do. But I can't get ApplicationVerifier to properly detect a handle leak.
Here is an example:
int APIENTRY ...