C++'s std::string pools, debug builds? std::string and valgrind problems

前端 未结 6 596
旧巷少年郎
旧巷少年郎 2021-01-11 16:38

I have a problem with many valgrind warnings about possible memory leaks in std::string, like this one:

120 bytes in 4 blocks are possibly lost in loss recor         


        
相关标签:
6条回答
  • 2021-01-11 17:03

    120 bytes are not enough for the pool. Do you exit() from your program?

    0 讨论(0)
  • 2021-01-11 17:04

    I just had this problem and for me, it was because I was linking with a development version of a library, but my test code was picking up the older system-installed version. The changes were subtle enough that it would link and run without any apparent problems, but Valgrind would detect weird leaks. Using ldd in place of valgrind confirmed that it was picking up the wrong library file. Setting LD_LIBRARY_PATH correctly fixed it, although the correct solution is to increment the library version as it's obviously not backwards compatible any more if you get this happening.

    I have also seen this problem when an object hasn't been destroyed properly, such as a class with virtual functions missing a virtual destructor. When the class is put into a pointer-to-base-class and then destroyed, only the base class destructor runs, leaking anything allocated in the derived classes, like std::string instances in your example. The hint here was to check which class was using the leaked string, and follow the class hierarchy back to the base class and confirm it has an explicit virtual destructor, even an empty one. I was assuming they were implicit if there are virtual functions in a class but apparently not, and GCC doesn't warn you about this.

    0 讨论(0)
  • 2021-01-11 17:10

    If I remember correctly, many STL allocators implement some kind of retention of memory. IE they do not release the memory allocated right away, but keep it around and reuse it. I certainly had many false positives in valgrind coming from memory allocated by my STL implementation.

    The best way I have found to deal with the problem is (simply) to use the suppression file.

    0 讨论(0)
  • 2021-01-11 17:14

    I had this issue because my program terminated due to an uncaught exception. Apparently the handler for uncaught exceptions does not clean everything up.

    0 讨论(0)
  • 2021-01-11 17:22

    Check the FAQ. There is a section about “Memory leaks” in containers. You should

    • check your version of Valgrind
    • use a debug build of your program (and un-optimized)
    • and define GLIBCXX_FORCE_NEW if necessary. (This is an environment variable that affects your program's runtime behavior, not a compile-time #define as you might expect.)
    0 讨论(0)
  • 2021-01-11 17:22

    This seems like a false positive. This can be suppressed as described in the manual

    0 讨论(0)
提交回复
热议问题