Don't crash if history items are inaccessible.
[dcpomatic.git] / src / lib / config.cc
index 4ce4517f8088fbac0e89087925f5d300a3969942..a4dea7fd1abb49926a3b709b3f90f1e0bc45209a 100644 (file)
@@ -1215,8 +1215,12 @@ Config::clean_history_internal (vector<boost::filesystem::path>& h)
        vector<boost::filesystem::path> old = h;
        h.clear ();
        BOOST_FOREACH (boost::filesystem::path i, old) {
-               if (boost::filesystem::is_directory(i)) {
-                       h.push_back (i);
+               try {
+                       if (boost::filesystem::is_directory(i)) {
+                               h.push_back (i);
+                       }
+               } catch (...) {
+                       /* We couldn't find out if it's a directory for some reason; just ignore it */
                }
        }
 }