]> git.sur5r.net Git - openldap/commitdiff
fix previous commit :)
authorPierangelo Masarati <ando@openldap.org>
Thu, 13 May 2004 22:19:16 +0000 (22:19 +0000)
committerPierangelo Masarati <ando@openldap.org>
Thu, 13 May 2004 22:19:16 +0000 (22:19 +0000)
servers/slapd/schema_init.c

index 717502b40385c62390737e70aacbe20169f0b06e..88cda29eef2a3b7d55b204619b5535da6493c183 100644 (file)
@@ -873,8 +873,8 @@ uniqueMemberNormalize(
 
        assert( SLAP_MR_IS_VALUE_OF_SYNTAX( usage ));
 
-       ber_dupbv( &out, val );
-       if( BER_BVISEMPTY( &out ) ) {
+       ber_dupbv_x( &out, val, ctx );
+       if ( BER_BVISEMPTY( &out ) ) {
                *normalized = out;
 
        } else {
@@ -901,7 +901,7 @@ uniqueMemberNormalize(
                rc = dnNormalize( 0, NULL, NULL, &out, normalized, ctx );
 
                if( rc != LDAP_SUCCESS ) {
-                       free( out.bv_val );
+                       slap_sl_free( out.bv_val, ctx );
                        return LDAP_INVALID_SYNTAX;
                }
 
@@ -921,7 +921,7 @@ uniqueMemberNormalize(
                        normalized->bv_val[normalized->bv_len] = '\0';
                }
 
-               free( out.bv_val );
+               slap_sl_free( out.bv_val, ctx );
        }
 
        return LDAP_SUCCESS;