mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-29 01:57:33 -05:00
fix the fix to previous commit
This commit is contained in:
parent
42dda802ba
commit
239f8fe2b2
1 changed files with 1 additions and 5 deletions
|
|
@ -177,11 +177,7 @@ do_add( Operation *op, SlapReply *rs )
|
|||
op->o_bd = frontendDB;
|
||||
rc = frontendDB->be_add( op, rs );
|
||||
if ( rc == 0 ) {
|
||||
/* FIXME: temporary? */
|
||||
assert( op->ora_e != NULL );
|
||||
assert( op->o_private != NULL );
|
||||
|
||||
if ( op->ora_e != NULL ) {
|
||||
if ( op->ora_e != NULL && op->o_private != NULL ) {
|
||||
BackendDB *bd = op->o_bd;
|
||||
|
||||
op->o_bd = (BackendDB *)op->o_private;
|
||||
|
|
|
|||
Loading…
Reference in a new issue