]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/operation.c
Extend checks to substrings rules. Need to kludge around
[openldap] / servers / slapd / operation.c
index 70343c6f40cf4a200a44e2020028acf79e67c3d0..49c1a7b58c50815c7506a5fef15d79119f1d3c93 100644 (file)
@@ -23,6 +23,15 @@ slap_op_free( Operation *op )
        if ( op->o_ber != NULL ) {
                ber_free( op->o_ber, 1 );
        }
+       if ( op->o_dn.bv_val != NULL ) {
+               free( op->o_dn.bv_val );
+       }
+       if ( op->o_ndn.bv_val != NULL ) {
+               free( op->o_ndn.bv_val );
+       }
+       if ( op->o_authmech.bv_val != NULL ) {
+               free( op->o_authmech.bv_val );
+       }
        if ( op->o_ctrls != NULL ) {
                ldap_controls_free( op->o_ctrls );
        }