]> git.sur5r.net Git - openldap/commitdiff
Fixed previous edit: Use op->o_bd, not a copy of ss->s_op->o_bd
authorRein Tollevik <rein@openldap.org>
Sat, 4 Apr 2009 17:58:58 +0000 (17:58 +0000)
committerRein Tollevik <rein@openldap.org>
Sat, 4 Apr 2009 17:58:58 +0000 (17:58 +0000)
servers/slapd/overlays/syncprov.c

index f2e6c3b54d3dfb76dc5a2f05ce02fc5e04345a0e..fa5f87ad4d2313900227e6e6d6f87714cb83b939 100644 (file)
@@ -1182,7 +1182,6 @@ syncprov_matchops( Operation *op, opcookie *opc, int saveit )
        {
                Operation op2;
                Opheader oh;
-               BackendDB be;
                syncmatches *sm;
                int found = 0;
 
@@ -1250,11 +1249,10 @@ syncprov_matchops( Operation *op, opcookie *opc, int saveit )
 
                if ( fc.fscope ) {
                        op2 = *ss->s_op;
-                       be = *op2.o_bd;
                        oh = *op->o_hdr;
                        oh.oh_conn = ss->s_op->o_conn;
                        oh.oh_connid = ss->s_op->o_connid;
-                       op2.o_bd = &be;
+                       op2.o_bd = op->o_bd;
                        op2.o_hdr = &oh;
                        op2.o_extra = op->o_extra;
                        rc = test_filter( &op2, e, ss->s_op->ors_filter );