CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Threaded View

  1. #1
    Join Date
    Feb 2012
    Posts
    10

    Leak: Allocation Number increasing by one when reported

    Hi guys i have a memory leak in my program which the memory allocation number is increasing by one everytime its reported. I wanted to put a break point on it but I'm wondering if that allocation number make sense. Any idea what does it mean and how to track this? Here is the actual memory leak.

    Code:
    Detected memory leaks!
    Dumping objects ->
    {1986} normal block at 0x01CD66B0, 88 bytes long.
     Data: < Ls            > 8C 6C 45 10 00 00 00 00 CD CD CD CD 00 00 00 00 
    Object dump complete.
    Detected memory leaks!
    Dumping objects ->
    {1986} normal block at 0x01CD66B0, 88 bytes long.
     Data: < Ls             > 8C 6C 45 10 00 00 00 00 CD CD CD CD 00 00 00 00 
    Object dump complete.
    The program '[2232] SampleApp_d.exe: Native' has exited with code 0 (0x0).
    that allocation number {1986} will be come {1987} next time the leak is reported.
    Last edited by himitsujanai; February 26th, 2012 at 09:53 PM.

Tags for this Thread

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