]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/backover.c
Merge remote-tracking branch 'origin/mdb.RE/0.9'
[openldap] / servers / slapd / backover.c
index f5ca6e7252fd83d38ca36c760f8a8f16a8ae6a70..b7d22922f450fbfd99324c7da2c95db9d3ef7aad 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2003-2014 The OpenLDAP Foundation.
+ * Copyright 2003-2015 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -684,9 +684,14 @@ int overlay_op_walk(
        }
        if ( rc == SLAP_CB_BYPASS )
                rc = SLAP_CB_CONTINUE;
+       /* if an overlay halted processing, make sure
+        * any previously set cleanup handlers are run
+        */
+       if ( rc != SLAP_CB_CONTINUE )
+               goto cleanup;
 
        bi = oi->oi_orig;
-       if ( (&bi->bi_op_bind)[ which ] && rc == SLAP_CB_CONTINUE ) {
+       if ( (&bi->bi_op_bind)[ which ] ) {
                op->o_bd->bd_info = bi;
                rc = (&bi->bi_op_bind)[ which ]( op, rs );
        }
@@ -700,6 +705,7 @@ int overlay_op_walk(
         */
        if ( rc == LDAP_UNWILLING_TO_PERFORM ) {
                slap_callback *sc_next;
+cleanup:
                for ( ; op->o_callback && op->o_callback->sc_response !=
                        over_back_response; op->o_callback = sc_next ) {
                        sc_next = op->o_callback->sc_next;