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:
Kurt Zeilenga 1999-06-02 20:29:35 +00:00
parent af20783396
commit e44c8504f3
2 changed files with 8 additions and 3 deletions

View File

@ -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
*/

View File

@ -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
*/