From a68ab3241a54d60b283f4898f4002e6e5d7549ab Mon Sep 17 00:00:00 2001 From: jackpoz Date: Sat, 11 Nov 2017 18:05:05 +0100 Subject: Core/Misc: Fix static analysis issues (cherry picked from commit 7e73f5f1edd8c99c3639e2a342cf044f6192fb6a) --- dep/g3dlite/source/fileutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dep/g3dlite/source/fileutils.cpp') diff --git a/dep/g3dlite/source/fileutils.cpp b/dep/g3dlite/source/fileutils.cpp index 2788adad3bc..f5310084cec 100644 --- a/dep/g3dlite/source/fileutils.cpp +++ b/dep/g3dlite/source/fileutils.cpp @@ -490,7 +490,7 @@ void parseFilename( } - } else if ((f.size() >= 2) & isSlash(f[0]) && isSlash(f[1])) { + } else if ((f.size() >= 2) && isSlash(f[0]) && isSlash(f[1])) { // e.g. //foo root = f.substr(0, 2); -- cgit v1.2.3