From 6662a8c41c52889d1cf20545b1542eec175fb0b2 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Mon, 3 Feb 2020 18:08:11 +0100 Subject: [PATCH] src: Hotfix for issue #907 --- src/lib/utility/file/FilePath.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/utility/file/FilePath.cpp b/src/lib/utility/file/FilePath.cpp index 5add50d7..4c01b725 100644 --- a/src/lib/utility/file/FilePath.cpp +++ b/src/lib/utility/file/FilePath.cpp @@ -136,6 +136,8 @@ bool FilePath::isValid() const it++; } } +#else + return true; // FIXME: hot fix for issue #907 #endif for (; it != m_path->end(); ++it)