mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed a tiny bug.
svn path=/trunk/; revision=2067
This commit is contained in:
parent
f488ede562
commit
ccf31892a1
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ int _mbsnicmp(const unsigned char *s1, const unsigned char *s2, size_t n)
|
|||
do {
|
||||
if (_mbbtoupper(*s1) != _mbbtoupper(*s2))
|
||||
return _mbbtoupper(*(unsigned const char *)s1) - _mbbtoupper(*(unsigned const char *)s2);
|
||||
*s1 += _mbclen2(*s1);
|
||||
*s2 += _mbclen2(*s2);
|
||||
s1 += _mbclen2(*s1);
|
||||
s2 += _mbclen2(*s2);
|
||||
|
||||
if (*s1 == 0)
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue