]> git.sur5r.net Git - openldap/commitdiff
fix leak
authorPierangelo Masarati <ando@openldap.org>
Sun, 19 Mar 2006 23:26:12 +0000 (23:26 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sun, 19 Mar 2006 23:26:12 +0000 (23:26 +0000)
servers/slapd/ad.c
servers/slapd/back-monitor/entry.c

index 7183d5e59fb6f3d5efac1b6e7987d470150f4092..4ac9b6a8c042768c66d4632825fa8605ba45d021 100644 (file)
@@ -1177,11 +1177,13 @@ ad_define_option( const char *name, const char *fname, int lineno )
        return 0;
 }
 
-void ad_unparse_options( BerVarray *res ){
+void
+ad_unparse_options( BerVarray *res )
+{
        int i;
-    for ( i=0; i < option_count; i++ ) {
-       ber_bvarray_add( res, ber_bvdup( &(options[i].name) ));
-    }
+       for ( i = 0; i < option_count; i++ ) {
+               value_add_one( res, &options[i].name );
+       }
 }
 
 /* Find the definition of the option name or prefix matching the arguments */
index 6ccdb9abdbf95295a9758d1d7d3038be58ed11f2..282b250c0bdccc57ad5987f670245f7f4367abfd 100644 (file)
@@ -198,6 +198,7 @@ monitor_entry_stub(
                rdnNormalize( 0, NULL, NULL, rdn, &nrdn, NULL );
                build_new_dn( &e->e_name, pdn, rdn, NULL );
                build_new_dn( &e->e_nname, pndn, &nrdn, NULL );
+               ber_memfree( nrdn.bv_val );
                nat.bv_val = ptr + 1;
                nat.bv_len = rdn->bv_len - ( nat.bv_val - rdn->bv_val );
                attr_merge_normalize_one( e, slap_schema.si_ad_objectClass,