c-index-test: dispose spelling string after use.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154738 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2012-04-14 09:11:51 +00:00
Родитель 34f9dc46d3
Коммит 342742adb6
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -2243,6 +2243,7 @@ int perform_token_annotation(int argc, const char **argv) {
clang_getSpellingLocation(clang_getRangeEnd(extent),
0, &end_line, &end_column, 0);
printf("%s: \"%s\" ", kind, clang_getCString(spelling));
clang_disposeString(spelling);
PrintExtent(stdout, start_line, start_column, end_line, end_column);
if (!clang_isInvalid(cursors[i].kind)) {
printf(" ");