aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/Wildcard.cpp
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/Common/Wildcard.cpp
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to '')
-rw-r--r--CPP/Common/Wildcard.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/CPP/Common/Wildcard.cpp b/CPP/Common/Wildcard.cpp
index 861f3f7..798cbd9 100644
--- a/CPP/Common/Wildcard.cpp
+++ b/CPP/Common/Wildcard.cpp
@@ -125,8 +125,8 @@ static bool EnhancedMaskTest(const wchar_t *mask, const wchar_t *name)
125{ 125{
126 for (;;) 126 for (;;)
127 { 127 {
128 wchar_t m = *mask; 128 const wchar_t m = *mask;
129 wchar_t c = *name; 129 const wchar_t c = *name;
130 if (m == 0) 130 if (m == 0)
131 return (c == 0); 131 return (c == 0);
132 if (m == '*') 132 if (m == '*')
@@ -526,12 +526,10 @@ int CCensor::FindPairForPrefix(const UString &prefix) const
526 526
527bool IsDriveColonName(const wchar_t *s) 527bool IsDriveColonName(const wchar_t *s)
528{ 528{
529 wchar_t c = s[0]; 529 unsigned c = s[0];
530 return c != 0 530 c |= 0x20;
531 && s[1] == ':' 531 c -= 'a';
532 && s[2] == 0 532 return c <= (unsigned)('z' - 'a') && s[1] == ':' && s[2] == 0;
533 && ((c >= 'a' && c <= 'z')
534 || (c >= 'A' && c <= 'Z'));
535} 533}
536 534
537unsigned GetNumPrefixParts_if_DrivePath(UStringVector &pathParts) 535unsigned GetNumPrefixParts_if_DrivePath(UStringVector &pathParts)