mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 06:59:54 -05:00
Fix prev commit
This commit is contained in:
parent
f6a49e6b66
commit
99186a90e0
1 changed files with 2 additions and 2 deletions
|
|
@ -191,8 +191,8 @@ ldap_str2charray( const char *str_in, const char *brkstr )
|
|||
}
|
||||
|
||||
i = 1;
|
||||
for ( s = str; *s; LDAP_UTF8_INCR(s) ) {
|
||||
s = ldap_utf8_strchr( s, brkstr );
|
||||
for ( s = str; ; LDAP_UTF8_INCR(s) ) {
|
||||
s = ldap_utf8_strpbrk( s, brkstr );
|
||||
if ( !s ) break;
|
||||
i++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue