commit | 7409e8438160f2a7f10b3ee14d801be20aaea714 | [log] [tgz] |
---|---|---|
author | NAKAMURA Takumi <geek4civic@gmail.com> | Fri Jan 24 13:40:43 2014 +0000 |
committer | NAKAMURA Takumi <geek4civic@gmail.com> | Fri Jan 24 13:40:43 2014 +0000 |
tree | 04cad73821c1091ff831cb9e0bdbe2029927efd3 | |
parent | 518490b94981c522f81255945f31c1e020991054 [diff] |
DWARFContext: Fix possible memory leak since r198908. llvm-svn: 200000
diff --git a/llvm/lib/DebugInfo/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARFContext.cpp index b725619..3b73f7f 100644 --- a/llvm/lib/DebugInfo/DWARFContext.cpp +++ b/llvm/lib/DebugInfo/DWARFContext.cpp
@@ -27,6 +27,7 @@ DeleteContainerPointers(CUs); DeleteContainerPointers(TUs); DeleteContainerPointers(DWOCUs); + DeleteContainerPointers(DWOTUs); } static void dumpPubSection(raw_ostream &OS, StringRef Name, StringRef Data,