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) { ...@@ -97,7 +97,7 @@ bool ZIPUTIL::WildMatch(PSZ pat, PSZ str) {
if (!*++pat) return TRUE; if (!*++pat) return TRUE;
goto loopStart; goto loopStart;
default: default:
if (mapCaseTable[(unsigned)*s] != mapCaseTable[(unsigned)*p]) if (mapCaseTable[(uchar)*s] != mapCaseTable[(uchar)*p])
goto starCheck; goto starCheck;
break; break;
} /* endswitch */ } /* 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