mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
Make ldap_utf8_bytes() act like strlen() not sizeof()
This commit is contained in:
parent
42cc5e5333
commit
ed9969b1c4
@ -147,8 +147,7 @@ LIBLDAP_F (int) ldap_pvt_tls_start LDAP_P(( Sockbuf *sb, void *ctx_arg ));
|
||||
* UTF-8 (in utf-8.c)
|
||||
*/
|
||||
|
||||
/* returns the number of bytes in the UTF-8 string
|
||||
(counting the NULL) */
|
||||
/* returns the number of bytes in the UTF-8 string */
|
||||
LIBLDAP_F (ber_len_t) ldap_utf8_bytes( const char * );
|
||||
/* returns the number of UTF-8 characters in the string */
|
||||
LIBLDAP_F (ber_len_t) ldap_utf8_chars( const char * );
|
||||
|
@ -133,7 +133,7 @@ static void openldap_ldap_init_w_conf(
|
||||
|
||||
*start++ = '\0';
|
||||
|
||||
/* we must have some non-whitespace to skip */
|
||||
/* we must have some whitespace to skip */
|
||||
while(isspace((unsigned char)*start)) start++;
|
||||
opt = start;
|
||||
|
||||
|
@ -39,16 +39,14 @@
|
||||
|
||||
/*
|
||||
* return the number of bytes required to hold the
|
||||
* NULL-terminated UTF-8 string INCLUDING the
|
||||
* NULL-terminated UTF-8 string NOT INCLUDING the
|
||||
* termination.
|
||||
*/
|
||||
ber_len_t ldap_utf8_bytes( const char * p )
|
||||
{
|
||||
ber_len_t bytes = 0;
|
||||
ber_len_t bytes;
|
||||
|
||||
if( p == NULL ) return bytes;
|
||||
|
||||
while( p[bytes++] ) {
|
||||
for( bytes=0; p[bytes]; bytes++ ) {
|
||||
/* EMPTY */ ;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user