aboutsummaryrefslogtreecommitdiff
path: root/tools/c-index-test/c-index-test.c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-01-31 22:04:05 +0000
committerDouglas Gregor <dgregor@apple.com>2011-01-31 22:04:05 +0000
commit4f5e21e24fb9e6ec473a13f83b5c9a2c41501a70 (patch)
tree9f120c36237ea7952616b01eb3f0dba564ea7b5c /tools/c-index-test/c-index-test.c
parentc7a9cda0eb24762a3e9c892b1f4bdc6deb5de0a6 (diff)
Teach Diagnostic::setClient() to free the existing, owned
client. Fixes a libclang leak. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test/c-index-test.c')
-rw-r--r--tools/c-index-test/c-index-test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c
index 808f4e9617..8c87d37651 100644
--- a/tools/c-index-test/c-index-test.c
+++ b/tools/c-index-test/c-index-test.c
@@ -827,6 +827,8 @@ static int perform_file_scan(const char *ast_file, const char *source_file,
}
fclose(fp);
+ clang_disposeTranslationUnit(TU);
+ clang_disposeIndex(Idx);
return 0;
}