Skip to content
Snippets Groups Projects
Commit e44c8504 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

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...
parent af207833
No related branches found
No related tags found
No related merge requests found
......@@ -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
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment