Commit fbcdc343 authored by Sergei Golubchik's avatar Sergei Golubchik

connect zip bug fix

parent 6728aae3
......@@ -97,7 +97,7 @@ bool ZIPUTIL::WildMatch(PSZ pat, PSZ str) {
if (!*++pat) return TRUE;
goto loopStart;
default:
if (mapCaseTable[(unsigned)*s] != mapCaseTable[(unsigned)*p])
if (mapCaseTable[(uchar)*s] != mapCaseTable[(uchar)*p])
goto starCheck;
break;
} /* endswitch */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment