Fix memory leak introduced in r237314.
authorAlex Lorenz <arphaman@gmail.com>
Thu, 14 May 2015 20:46:12 +0000 (20:46 +0000)
committerAlex Lorenz <arphaman@gmail.com>
Thu, 14 May 2015 20:46:12 +0000 (20:46 +0000)
The commit r237314 that implements YAML block parsing
introduced a leak that was caught by the ASAN linux buildbot.
YAML Parser stores its tokens in an ilist, and allocates
tokens using a BumpPtrAllocator, but doesn't call the
destructor for the allocated tokens. R237314 added an
std::string field to a Token which leaked as the Token's
destructor wasn't called. This commit fixes this leak
by calling the Token's destructor when a Token is being
removed from an ilist of tokens.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237389 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/YAMLParser.cpp

index be9ba00bbeed7badd59f2f67c17f0f9791d428e3..162a22bd91000ab5c736fa3cb974db04aaf96374 100644 (file)
@@ -168,7 +168,7 @@ struct ilist_node_traits<Token> {
   Token *createNode(const Token &V) {
     return new (Alloc.Allocate<Token>()) Token(V);
   }
-  static void deleteNode(Token *V) {}
+  static void deleteNode(Token *V) { V->~Token(); }
 
   void addNodeToList(Token *) {}
   void removeNodeFromList(Token *) {}