mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
value_normalize can change the length of value. Fixed
use in index_add_value(), but should modify value_normalize to use a struct berval * instead of a char* pointer...
This commit is contained in:
parent
af20783396
commit
e44c8504f3
2 changed files with 8 additions and 3 deletions
|
|
@ -271,6 +271,9 @@ bdb2i_index_add_values(
|
|||
|
||||
value_normalize( val, syntax );
|
||||
|
||||
/* value_normalize could change the length of val */
|
||||
len = strlen( val );
|
||||
|
||||
/*
|
||||
* equality index entry
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -31,9 +31,8 @@ index_add_entry(
|
|||
* with index_add_values() call
|
||||
*/
|
||||
|
||||
bv.bv_val = ch_strdup( e->e_dn );
|
||||
bv.bv_val = ch_strdup( e->e_ndn );
|
||||
bv.bv_len = strlen( bv.bv_val );
|
||||
(void) dn_normalize_case( bv.bv_val );
|
||||
bvals[0] = &bv;
|
||||
bvals[1] = NULL;
|
||||
|
||||
|
|
@ -52,7 +51,7 @@ index_add_entry(
|
|||
}
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "<= index_add( %ld, \"%s\" ) 0\n", e->e_id,
|
||||
e->e_dn, 0 );
|
||||
e->e_ndn, 0 );
|
||||
return( 0 );
|
||||
}
|
||||
|
||||
|
|
@ -279,6 +278,9 @@ index_add_values(
|
|||
|
||||
value_normalize( val, syntax );
|
||||
|
||||
/* value_normalize could change the length of val */
|
||||
len = strlen( val );
|
||||
|
||||
/*
|
||||
* equality index entry
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue