]> granicus.if.org Git - clang/commitdiff
[c-index-test] Fix warnings about unused results from chdir().
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Mon, 17 Dec 2012 20:19:56 +0000 (20:19 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Mon, 17 Dec 2012 20:19:56 +0000 (20:19 +0000)
Patch from Edwin Vane!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170366 91177308-0d34-0410-b5e6-96231b3b80d8

tools/c-index-test/c-index-test.c

index 7a36d093a5c5413feac67f43f092908caa9e4d9b..be2b6fc58497957ce52434efca31c1290307e7a0 100644 (file)
@@ -2813,9 +2813,13 @@ static int index_compile_db(int argc, const char **argv) {
         goto cdb_end;
       }
 
-      chdir(buildDir);
-      CCmds = clang_CompilationDatabase_getAllCompileCommands(db);
+      if (chdir(buildDir) != 0) {
+        printf("Could not chdir to %s\n", buildDir);
+        errorCode = -1;
+        goto cdb_end;
+      }
 
+      CCmds = clang_CompilationDatabase_getAllCompileCommands(db);
       if (!CCmds) {
         printf("compilation db is empty\n");
         errorCode = -1;
@@ -2834,7 +2838,11 @@ static int index_compile_db(int argc, const char **argv) {
         CCmd = clang_CompileCommands_getCommand(CCmds, i);
 
         wd = clang_CompileCommand_getDirectory(CCmd);
-        chdir(clang_getCString(wd));
+        if (chdir(clang_getCString(wd)) != 0) {
+          printf("Could not chdir to %s\n", clang_getCString(wd));
+          errorCode = -1;
+          goto cdb_end;
+        }
         clang_disposeString(wd);
 
         numArgs = clang_CompileCommand_getNumArgs(CCmd);