From 1c99e0917ec9028ca172cb9c8b524f4aec7d349a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 19 Apr 2020 12:24:12 +0200 Subject: [PATCH] - do not treat the ':' as a path separator. The cases where it really is needed have special handling for it, in all others it causes more problems than it solves. --- src/common/utility/cmdlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utility/cmdlib.cpp b/src/common/utility/cmdlib.cpp index 3e108492d..dac58292a 100644 --- a/src/common/utility/cmdlib.cpp +++ b/src/common/utility/cmdlib.cpp @@ -73,7 +73,7 @@ static inline bool IsSeperator (int c) if (c == '/') return true; #ifdef _WIN32 - if (c == '\\' || c == ':') + if (c == '\\') return true; #endif return false;