mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-21 06:14:40 -05:00
ITS#3115: don't increment argument to TOLOWER macro
This commit is contained in:
parent
aafe680091
commit
5f2497910b
1 changed files with 1 additions and 1 deletions
|
|
@ -1749,7 +1749,7 @@ IA5StringNormalize(
|
|||
|
||||
} else if ( casefold ) {
|
||||
/* Most IA5 rules require casefolding */
|
||||
*q++ = TOLOWER(*p++);
|
||||
*q++ = TOLOWER(*p); p++;
|
||||
|
||||
} else {
|
||||
*q++ = *p++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue