From: Pierangelo Masarati Date: Mon, 27 Aug 2007 07:13:25 +0000 (+0000) Subject: need to copy the Entry to safely manipulate it X-Git-Tag: OPENLDAP_REL_ENG_2_4_MP~61 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=09cbbb92a7a4fbec0d3c5e38f792237398212753;p=openldap need to copy the Entry to safely manipulate it --- diff --git a/servers/slapd/slapadd.c b/servers/slapd/slapadd.c index 7f66cad740..b091233479 100644 --- a/servers/slapd/slapadd.c +++ b/servers/slapd/slapadd.c @@ -344,7 +344,8 @@ slapadd( int argc, char **argv ) } else { ctxcsn_e = be->be_entry_get( be, ctxcsn_id ); if ( ctxcsn_e != NULL ) { - attr = attr_find( ctxcsn_e->e_attrs, slap_schema.si_ad_contextCSN ); + Entry *e = entry_dup( ctxcsn_e ); + attr = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN ); if ( attr ) { int i; @@ -384,33 +385,31 @@ slapadd( int argc, char **argv ) } } -#if 0 - if ( attr->a_nvals && attr->a_nvals != attr->a_vals ) { - ber_bvarray_free( attr->a_nvals ); + if ( attr->a_nvals != attr->a_vals ) { + ber_bvarray_free( attr->a_vals ); } + attr->a_nvals = NULL; ber_bvarray_free( attr->a_vals ); -#endif - attr->a_vals = NULL; - attr->a_nvals = NULL; } for ( sid = 0; sid <= SLAP_SYNC_SID_MAX; sid++ ) { if ( maxcsn[ sid ].bv_len ) { - attr_merge_one( ctxcsn_e, slap_schema.si_ad_contextCSN, + attr_merge_one( e, slap_schema.si_ad_contextCSN, &maxcsn[ sid], NULL ); } } - ctxcsn_id = be->be_entry_modify( be, ctxcsn_e, &bvtext ); + ctxcsn_id = be->be_entry_modify( be, e, &bvtext ); if( ctxcsn_id == NOID ) { fprintf( stderr, "%s: could not modify ctxcsn\n", progname); rc = EXIT_FAILURE; } else if ( verbose ) { fprintf( stderr, "modified: \"%s\" (%08lx)\n", - ctxcsn_e->e_dn, (long) ctxcsn_id ); + e->e_dn, (long) ctxcsn_id ); } + entry_free( e ); } } }