Deallocate the StringLiteral itself in StringLiteral::Destroy() and deallocate the string data before running StringLiteral's destructor.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2009-02-09 17:10:09 +00:00
Родитель fb7413f126
Коммит 353ffceafc
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -54,8 +54,9 @@ StringLiteral::StringLiteral(ASTContext& C, const char *strData,
}
void StringLiteral::Destroy(ASTContext &C) {
this->~StringLiteral();
C.Deallocate(const_cast<char*>(StrData));
this->~StringLiteral();
C.Deallocate(this);
}
bool UnaryOperator::isPostfix(Opcode Op) {