OSDN Git Service

For PR777:
authorReid Spencer <rspencer@reidspencer.com>
Mon, 15 May 2006 22:12:42 +0000 (22:12 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 15 May 2006 22:12:42 +0000 (22:12 +0000)
Add an additional catch block to ensure that this function can't throw any
exceptions, even one's we're not expecting.

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

lib/Support/FileUtilities.cpp

index ae851c7..a7f42dd 100644 (file)
@@ -241,5 +241,8 @@ int llvm::DiffFilesWithTolerance(const sys::Path &FileA,
   } catch (const std::string &Msg) {
     if (Error) *Error = Msg;
     return 2;
+  } catch (...) {
+    *Error = "Unknown Exception Occurred";
+    return 2;
   }
 }