]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldbm/add.c
Plug memory leak
[openldap] / servers / slapd / back-ldbm / add.c
index 6bc32c1f221c0ed4e13169a88f094e2b547929ae..39b03af185049c18647e2d3224afd6a9a163c0d7 100644 (file)
@@ -46,7 +46,7 @@ ldbm_back_add(
                op->o_req_dn.bv_val, 0, 0);
        
        rs->sr_err = entry_schema_check( op->o_bd, op->oq_add.rs_e, NULL,
-               &rs->sr_text, textbuf, textlen );
+               get_manageDIT(op), &rs->sr_text, textbuf, textlen );
 
        if ( rs->sr_err != LDAP_SUCCESS ) {
                Debug( LDAP_DEBUG_TRACE, "entry failed schema check: %s\n",
@@ -62,7 +62,7 @@ ldbm_back_add(
 #endif
 
        if ( !access_allowed( op, op->oq_add.rs_e,
-                               entry, NULL, ACL_WRITE, NULL ) )
+                               entry, NULL, ACL_WADD, NULL ) )
        {
                Debug( LDAP_DEBUG_TRACE, "no write access to entry\n", 0,
                    0, 0 );
@@ -131,7 +131,7 @@ ldbm_back_add(
                        return rs->sr_err;
                }
 
-               if ( ! access_allowed( op, p, children, NULL, ACL_WRITE, NULL ) ) {
+               if ( ! access_allowed( op, p, children, NULL, ACL_WADD, NULL ) ) {
                        /* free parent and writer lock */
                        cache_return_entry_w( &li->li_cache, p ); 
                        ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);