ITS#3115: don't increment argument to TOLOWER macro

This commit is contained in:
Kurt Zeilenga 2004-04-26 23:13:19 +00:00
parent aafe680091
commit 5f2497910b

View File

@ -1749,7 +1749,7 @@ IA5StringNormalize(
} else if ( casefold ) {
/* Most IA5 rules require casefolding */
*q++ = TOLOWER(*p++);
*q++ = TOLOWER(*p); p++;
} else {
*q++ = *p++;