Piotr Caban (@piotr) commented about dlls/msvcrt/mbcs.c:
}
if (_ismbblead(*cmp))
cmpc=(len>=2)?_mbsnextc(cmp):0;
else
cmpc=*cmp;
strc = _mbctolower(strc);
cmpc = _mbctolower(cmpc);
if(strc != cmpc)
return strc < cmpc ? -1 : 1;
len -= clen;
str += clen;
cmp += clen;
unsigned int strc, cmpc;
while (len)
{
int clen;
```suggestion:-2+0 while (len) { int clen; ```