Fix backend_attribute trying to reference a NULL be. Neither backend_group

nor backend_attribute need to worry about the noSubs parameter of
select_backend().
This commit is contained in:
Howard Chu 2002-03-18 08:59:02 +00:00
parent 35554dadf3
commit bad62d2167

View File

@ -997,8 +997,7 @@ backend_group(
if ( !dn_match( &target->e_nname, gr_ndn ) ) {
/* we won't attempt to send it to a different backend */
be = select_backend( gr_ndn, 0,
(be->be_flags & SLAP_BFLAG_GLUE_INSTANCE));
be = select_backend( gr_ndn, 0, 0 );
if (be == NULL) {
return LDAP_NO_SUCH_OBJECT;
@ -1057,8 +1056,7 @@ backend_attribute(
if ( target == NULL || !dn_match( &target->e_nname, edn ) ) {
/* we won't attempt to send it to a different backend */
be = select_backend( edn, 0,
(be->be_flags & SLAP_BFLAG_GLUE_INSTANCE));
be = select_backend( edn, 0, 0 );
if (be == NULL) {
return LDAP_NO_SUCH_OBJECT;