mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 08:12:54 -05:00
Ensure backend is set before calling send_ldap_extended();
whoami was crashing for anonymous clients
This commit is contained in:
parent
0b631c0d2f
commit
8c52d0e401
1 changed files with 2 additions and 0 deletions
|
|
@ -222,6 +222,8 @@ fe_extended( Operation *op, SlapReply *rs )
|
|||
}
|
||||
}
|
||||
|
||||
if ( op->o_bd == NULL )
|
||||
op->o_bd = frontendDB;
|
||||
send_ldap_extended( op, rs );
|
||||
|
||||
if ( rs->sr_ref != default_referral ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue