Fix warning in assignment

This commit is contained in:
Luke Howard 2004-04-15 02:36:23 +00:00
parent b047ba6f7e
commit 12949734bd
2 changed files with 8 additions and 8 deletions

View File

@ -120,7 +120,7 @@ ldap_back_modify(
if ( ml->sml_values != NULL ) {
if ( is_oc ) {
for (j = 0; ml->sml_values[j].bv_val; j++);
mods[i].mod_values = (struct berval **)ch_malloc((j+1) *
mods[i].mod_bvalues = (struct berval **)ch_malloc((j+1) *
sizeof(struct berval *));
for (j = 0; ml->sml_values[j].bv_val; j++) {
ldap_back_map(&li->rwmap.rwm_oc,
@ -129,7 +129,7 @@ ldap_back_modify(
if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
continue;
}
mods[i].mod_values[j] = &mapped;
mods[i].mod_bvalues[j] = &mapped;
}
mods[i].mod_values[j] = NULL;
@ -144,10 +144,10 @@ ldap_back_modify(
}
for (j = 0; ml->sml_values[j].bv_val; j++);
mods[i].mod_values = (struct berval **)ch_malloc((j+1) *
mods[i].mod_bvalues = (struct berval **)ch_malloc((j+1) *
sizeof(struct berval *));
for (j = 0; ml->sml_values[j].bv_val; j++)
mods[i].mod_values[j] = &ml->sml_values[j];
mods[i].mod_bvalues[j] = &ml->sml_values[j];
mods[i].mod_values[j] = NULL;
}

View File

@ -119,14 +119,14 @@ meta_back_modify( Operation *op, SlapReply *rs )
if ( ml->sml_values != NULL ){
for (j = 0; ml->sml_values[ j ].bv_val; j++);
mods[ i ].mod_values = (struct berval **)ch_malloc((j+1) *
mods[ i ].mod_bvalues = (struct berval **)ch_malloc((j+1) *
sizeof(struct berval *));
for (j = 0; ml->sml_values[ j ].bv_val; j++)
mods[ i ].mod_values[ j ] = &ml->sml_values[j];
mods[ i ].mod_values[ j ] = NULL;
mods[ i ].mod_bvalues[ j ] = &ml->sml_values[j];
mods[ i ].mod_bvalues[ j ] = NULL;
} else {
mods[ i ].mod_values = NULL;
mods[ i ].mod_bvalues = NULL;
}
i++;