From 7d5d19fde771df4b79c2c21363fe79c0ed518c1c Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Tue, 30 May 2017 08:59:52 +0200 Subject: [PATCH] utility: Fixed License location check for CI --- src/lib_license/License.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_license/License.cpp b/src/lib_license/License.cpp index dda9634e..e5f49f69 100644 --- a/src/lib_license/License.cpp +++ b/src/lib_license/License.cpp @@ -535,7 +535,7 @@ bool License::checkLocation(const std::string& location, const std::string& hash { if (!location.size() || !hash.size()) { - return false; + return true; } return Botan::check_passhash9(location, hash);