]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/mra.c
More system schema checks
[openldap] / servers / slapd / mra.c
index 56e15a417fcf19ba9b74af3977f976958070ce5d..87b4a47dda779fc9b6fd5d655690eeae8a9ea171 100644 (file)
@@ -1,6 +1,6 @@
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 /* mra.c - routines for dealing with extensible matching rule assertions */
@@ -21,7 +21,9 @@ mra_free(
     int        freeit
 )
 {
+#if 0  /* no longer a malloc'd string */
        ch_free( mra->ma_rule_text.bv_val );
+#endif
        ch_free( mra->ma_value.bv_val );
        if ( freeit ) {
                ch_free( (char *) mra );
@@ -64,7 +66,7 @@ get_mra(
        }
 
        if ( tag == LDAP_FILTER_EXT_OID ) {
-               rc = ber_scanf( ber, "o", &ma->ma_rule_text );
+               rc = ber_scanf( ber, "m", &ma->ma_rule_text );
                if ( rc == LBER_ERROR ) {
 #ifdef NEW_LOGGING
                        LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
@@ -96,7 +98,7 @@ get_mra(
        }
 
        if ( tag == LDAP_FILTER_EXT_TYPE ) {
-               rc = ber_scanf( ber, "o", &type );
+               rc = ber_scanf( ber, "m", &type );
                if ( rc == LBER_ERROR ) {
 #ifdef NEW_LOGGING
                        LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
@@ -110,7 +112,6 @@ get_mra(
                }
 
                rc = slap_bv2ad( &type, &ma->ma_desc, text );
-               ch_free( type.bv_val );
 
                if( rc != LDAP_SUCCESS ) {
                        mra_free( ma, 1 );
@@ -146,7 +147,7 @@ get_mra(
                return SLAPD_DISCONNECT;
        }
 
-       rc = ber_scanf( ber, "o", &value );
+       rc = ber_scanf( ber, "m", &value );
 
        if( rc == LBER_ERROR ) {
 #ifdef NEW_LOGGING
@@ -166,7 +167,6 @@ get_mra(
         * normalize for the matching rule.
         */
        rc = value_normalize( ma->ma_desc, SLAP_MR_EQUALITY, &value, &ma->ma_value, text );
-       ch_free( value.bv_val );
 
        if( rc != LDAP_SUCCESS ) {
                mra_free( ma, 1 );