Call clang_disposeTokens() when we are done with the set of tokens.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2010-10-20 21:22:15 +00:00
Родитель 536bab452f
Коммит 93f5e6a5d7
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1234,6 +1234,7 @@ int perform_token_annotation(int argc, const char **argv) {
printf("\n");
}
free(cursors);
clang_disposeTokens(TU, tokens, num_tokens);
teardown:
PrintDiagnostics(TU);