OpenLDAP 2.4 Change Log
OpenLDAP 2.4.12 Engineering
+ Fixed libldap ldap_utf8_strchar arguments (ITS#5720)
Fixed libldap TLS_CRLFILE (ITS#5677)
Fixed liblutil executables on Windows (ITS#5604)
Fixed liblutil microsecond overflows on Windows (ITS#5668)
}
i = 1;
- for ( s = str; *s; s++ ) {
- if ( ldap_utf8_strchr( brkstr, s ) != NULL ) {
- i++;
- }
+ for ( s = str; *s; LDAP_UTF8_INCR(s) ) {
+ s = ldap_utf8_strchr( s, brkstr );
+ if ( !s ) break;
+ i++;
}
res = (char **) LDAP_MALLOC( (i + 1) * sizeof(char *) );