CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2003
    Location
    Timisoara, Romania
    Posts
    306

    AppVerifier commands for leaks detection

    I'm usign AppVerifier in order to detect leks in my code and I got next info in my debug output.
    Code:
    VERIFIER STOP 0000000000000900: pid 0x1350: A heap allocation was leaked. 
    
    	000000003D41FFC0 : Address of the leaked allocation. Run !heap -p -a <address> to get additional information about the allocation.
    	00000000003E90E0 : Address to the allocation stack trace. Run dps <address> to view the allocation stack.
    	000000000D1CDFE4 : Address of the owner dll name. Run du <address> to read the dll name.
    	0000000180000000 : Base of the owner dll. Run .reload <dll_name> = <address> to reload the owner dll. Use 'lm' to get more information about the loaded and unloaded modules.
    I don't understand how can I use this commands parameters (which app should I pass this parameters). I generated a dump file, too.

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: AppVerifier commands for leaks detection

    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

  3. #3
    Join Date
    Jan 2003
    Location
    Timisoara, Romania
    Posts
    306

    Re: AppVerifier commands for leaks detection

    Yep. mean time if found the "miraculous" application. Thanks a lot!

  4. #4
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: AppVerifier commands for leaks detection

    Yes, WinDbg is indeed miraculous and the ultimate debugging tool for windows.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured