SFML community forums

Help => General => Topic started by: Chi on March 09, 2013, 05:54:51 pm

Title: Memory Debugger on SFML
Post by: Chi on March 09, 2013, 05:54:51 pm
Hello all,

during the time i learn C++, iam always using a memory debugger (valgrind on Linux, Dr. Memory on Win) when iam using dynamic allocations in C++. Today i tryd out using Dr. Memory with the SFML Tutorial Example and getting a lots of leaks:

ERRORS FOUND:
      2 unique,     2 total unaddressable access(es)
    863 unique,   916 total uninitialized access(es)
    867 unique,  1523 total invalid heap argument(s)
      0 unique,     0 total GDI usage error(s)
      0 unique,     0 total warning(s)
    885 unique,  1543 total, 353150 byte(s) of leak(s)
    272 unique,   729 total, 3190617 byte(s) of possible leak(s)
ERRORS IGNORED:
   6010 still-reachable allocation(s)

it seems it makes not much sense using a memory debugger during programming with SFML - or? Because its not possible to figure here some memory leaks out.

What you think ?

Title: Re: Memory Debugger on SFML
Post by: eXpl0it3r on March 09, 2013, 09:04:06 pm
What version of SFML are you testing? (i.e. where did you get it from).

I've no idea how Dr. Memory works, but checking for Memory Leaks can sometimes be difficult. You can always get false-positives, if the memory is freed after the memory leak detection finishes.
Title: Re: Memory Debugger on SFML
Post by: Chi on March 10, 2013, 11:14:38 am
Mhh yes i think thats maybe the problem. What a pity.

I was testing the nightly build from your signature VS 10 C++ / 2010 32-Bit

Title: Re: Memory Debugger on SFML
Post by: Roose Bolton of the Dreadfort on March 10, 2013, 08:52:17 pm
Use this

http://vld.codeplex.com/

honestly the best 1 I have ever used, not had 1 single false positive yet!

Just link it to your project and

//Include MemoryLeak Detector.
#if _DEBUG
        #include <vld.h>
#endif
 
Title: Re: Memory Debugger on SFML
Post by: eXpl0it3r on March 10, 2013, 09:01:45 pm
Use this

http://vld.codeplex.com/
And it's Visual Studio only... ::)
Title: Re: Memory Debugger on SFML
Post by: Chi on March 10, 2013, 10:25:37 pm
Use this

http://vld.codeplex.com/

honestly the best 1 I have ever used, not had 1 single false positive yet!

Just link it to your project and

//Include MemoryLeak Detector.
#if _DEBUG
        #include <vld.h>
#endif
 

Thanks, but it seems not to work.
He didnt recognizing here any leak by creating sth via. new without delete.

int *mField;
mField = new int(55);
// delete mField;
 
Title: Re: Memory Debugger on SFML
Post by: Roose Bolton of the Dreadfort on March 13, 2013, 11:35:54 am
You are sure its running correctly?

Does it say in your console window thats its activated correctly?
Title: AW: Memory Debugger on SFML
Post by: eXpl0it3r on March 13, 2013, 11:41:08 am
I've linked it and run some SFML application with it, but I get quite a huge output and always some mem leaks. Not sure if one should trust this.
Title: Re: Memory Debugger on SFML
Post by: Nexus on March 13, 2013, 12:37:26 pm
during the time i learn C++, iam always using a memory debugger (valgrind on Linux, Dr. Memory on Win) when iam using dynamic allocations in C++.
Instead of fighting symptoms, you should rather fix the cause.

Avoid dynamic allocations that are manually managed. If you encapsulate your memory management consequently, there is hardly a need for memory tools. Take a look at the RAII idiom, and use automatic variables, smart pointers or STL containers instead of raw new and delete.
Title: Re: AW: Memory Debugger on SFML
Post by: Roose Bolton of the Dreadfort on March 15, 2013, 01:58:36 pm
I've linked it and run some SFML application with it, but I get quite a huge output and always some mem leaks. Not sure if one should trust this.

Maybe you have memory leaks then? ;)

I have never had problems with it and I know lots of people who use it and an indie company.. and it has 34,500 downloads with only 6 star reviews.. would be surprised if all along it didn't work.. maybe all the people are dumb dumbs. :P

http://stackoverflow.com/questions/25730/what-is-the-best-free-memory-leak-detector-for-a-c-c-program-and-its-plug-in-d

stackoverflow seem to love it too!