]> git.sur5r.net Git - openldap/commitdiff
trim useless code
authorPierangelo Masarati <ando@openldap.org>
Mon, 28 Jun 2004 22:01:30 +0000 (22:01 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 28 Jun 2004 22:01:30 +0000 (22:01 +0000)
servers/slapd/value.c

index 18d06216e28165c335a3c97d80519fb0d34d8f43..5295cd8330545377b159428ca02a98b88eac5e1a 100644 (file)
@@ -215,8 +215,6 @@ value_match(
        const char ** text )
 {
        int rc;
-       struct berval nv1 = BER_BVNULL;
-       struct berval nv2 = BER_BVNULL;
 
        assert( mr != NULL );
 
@@ -225,13 +223,8 @@ value_match(
        }
 
        rc = (mr->smr_match)( match, flags,
-               ad->ad_type->sat_syntax,
-               mr,
-               nv1.bv_val != NULL ? &nv1 : v1,
-               nv2.bv_val != NULL ? &nv2 : v2 );
+               ad->ad_type->sat_syntax, mr, v1, v2 );
        
-       if (nv1.bv_val ) free( nv1.bv_val );
-       if (nv2.bv_val ) free( nv2.bv_val );
        return rc;
 }