summaryrefslogtreecommitdiff
path: root/unittests/Tooling/RefactoringTest.cpp
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2014-04-24 04:26:18 +0000
committerNico Weber <nicolasweber@gmx.de>2014-04-24 04:26:18 +0000
commit07aa87612b01a9672e7703a99819c23416780a30 (patch)
tree2a8e9c55be26ecc4a3d3f7ebffda37e7c1dc6440 /unittests/Tooling/RefactoringTest.cpp
parent29c13d16f0d3a3a287a2b549b107e90085c0a458 (diff)
downloadclang-07aa87612b01a9672e7703a99819c23416780a30.tar.gz
clang-07aa87612b01a9672e7703a99819c23416780a30.tar.bz2
clang-07aa87612b01a9672e7703a99819c23416780a30.tar.xz
Fix two test-only leaks found by LSan.
The result of getBufferForFile() must be freed. (Should we change functions that expect the caller to assume ownership so that they return unique_ptrs instead? Then the type system makes sure we get this right.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207074 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Tooling/RefactoringTest.cpp')
-rw-r--r--unittests/Tooling/RefactoringTest.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/unittests/Tooling/RefactoringTest.cpp b/unittests/Tooling/RefactoringTest.cpp
index 8c7bfa1c76..b1ed3c72be 100644
--- a/unittests/Tooling/RefactoringTest.cpp
+++ b/unittests/Tooling/RefactoringTest.cpp
@@ -252,7 +252,9 @@ public:
// descriptor, which might not see the changes made.
// FIXME: Figure out whether there is a way to get the SourceManger to
// reopen the file.
- return Context.Files.getBufferForFile(Path, NULL)->getBuffer();
+ std::unique_ptr<const llvm::MemoryBuffer> FileBuffer(
+ Context.Files.getBufferForFile(Path, NULL));
+ return FileBuffer->getBuffer();
}
llvm::StringMap<std::string> TemporaryFiles;