зеркало из https://github.com/microsoft/clang-1.git
Plug leak. The DenseMaps of CXXRecordLayoutInfo weren't freed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112006 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
cfe17e5c82
Коммит
42f81e674b
|
@ -19,8 +19,10 @@ using namespace clang;
|
|||
void ASTRecordLayout::Destroy(ASTContext &Ctx) {
|
||||
if (FieldOffsets)
|
||||
Ctx.Deallocate(FieldOffsets);
|
||||
if (CXXInfo)
|
||||
if (CXXInfo) {
|
||||
Ctx.Deallocate(CXXInfo);
|
||||
CXXInfo->~CXXRecordLayoutInfo();
|
||||
}
|
||||
this->~ASTRecordLayout();
|
||||
Ctx.Deallocate(this);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче