forked from OSchip/llvm-project
DWARFContext: Fix possible memory leak since r198908.
llvm-svn: 200000
This commit is contained in:
parent
518490b949
commit
7409e84381
|
@ -27,6 +27,7 @@ DWARFContext::~DWARFContext() {
|
||||||
DeleteContainerPointers(CUs);
|
DeleteContainerPointers(CUs);
|
||||||
DeleteContainerPointers(TUs);
|
DeleteContainerPointers(TUs);
|
||||||
DeleteContainerPointers(DWOCUs);
|
DeleteContainerPointers(DWOCUs);
|
||||||
|
DeleteContainerPointers(DWOTUs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dumpPubSection(raw_ostream &OS, StringRef Name, StringRef Data,
|
static void dumpPubSection(raw_ostream &OS, StringRef Name, StringRef Data,
|
||||||
|
|
Loading…
Reference in New Issue