[libFuzzer] be more robust when dealing with files on disk (e.g. don't crash if a...
[oota-llvm.git] / lib / Fuzzer / FuzzerIO.cpp
index a68c6c579bfb8b445fc74270200ce680c3927681..b6ffb752de310dd8afbf78c15d4ce8ee6316894f 100644 (file)
@@ -21,10 +21,8 @@ namespace fuzzer {
 
 static long GetEpoch(const std::string &Path) {
   struct stat St;
-  if (stat(Path.c_str(), &St)) {
-    Printf("Can not stat: %s; exiting\n", Path.c_str());
-    exit(1);
-  }
+  if (stat(Path.c_str(), &St))
+    return 0;  // Can't stat, be conservative.
   return St.st_mtime;
 }