[ASTUnit] Fix use-after-free bug in ASTUnit::getMainBufferWithPrecompiledPreamble().
With r197755 we started reading the contents of buffer file entries, but the buffers may point to ASTReader blobs that have been disposed. Fix this by having the CompilerInstance object keep a reference to the ASTReader as well as having the ASTContext keep reference to the ExternalASTSource. This was very difficult to construct a test case for. rdar://16149782 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202346 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/ASTContext.h 5 additions, 3 deletionsinclude/clang/AST/ASTContext.h
- include/clang/AST/ExternalASTSource.h 1 addition, 1 deletioninclude/clang/AST/ExternalASTSource.h
- include/clang/Frontend/ASTUnit.h 1 addition, 1 deletioninclude/clang/Frontend/ASTUnit.h
- include/clang/Frontend/ChainedIncludesSource.h 2 additions, 2 deletionsinclude/clang/Frontend/ChainedIncludesSource.h
- include/clang/Frontend/CompilerInstance.h 4 additions, 4 deletionsinclude/clang/Frontend/CompilerInstance.h
- lib/AST/ASTContext.cpp 3 additions, 3 deletionslib/AST/ASTContext.cpp
- lib/Frontend/ASTUnit.cpp 8 additions, 22 deletionslib/Frontend/ASTUnit.cpp
- lib/Frontend/ChainedIncludesSource.cpp 11 additions, 11 deletionslib/Frontend/ChainedIncludesSource.cpp
- lib/Frontend/CompilerInstance.cpp 12 additions, 7 deletionslib/Frontend/CompilerInstance.cpp
- lib/Frontend/FrontendAction.cpp 4 additions, 5 deletionslib/Frontend/FrontendAction.cpp
Loading
Please register or sign in to comment