mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
quick fix for ITS#6616; root cause not clear yet
This commit is contained in:
parent
7c19cf6547
commit
4fbbedcf29
@ -925,19 +925,26 @@ backsql_id2entry( backsql_srch_info *bsi, backsql_entryID *eid )
|
||||
goto done;
|
||||
}
|
||||
|
||||
ber_dupbv_x( &bsi->bsi_e->e_name, &eid->eid_dn, op->o_tmpmemctx );
|
||||
ber_dupbv_x( &bsi->bsi_e->e_nname, &eid->eid_ndn, op->o_tmpmemctx );
|
||||
|
||||
bsi->bsi_e->e_attrs = NULL;
|
||||
bsi->bsi_e->e_private = NULL;
|
||||
|
||||
if ( eid->eid_oc == NULL ) {
|
||||
eid->eid_oc = backsql_id2oc( bsi->bsi_op->o_bd->be_private,
|
||||
eid->eid_oc_id );
|
||||
if ( eid->eid_oc == NULL ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"backsql_id2entry(): unable to fetch objectClass with id=%lu for entry id=" BACKSQL_IDFMT " dn=\"%s\"\n",
|
||||
eid->eid_oc_id, BACKSQL_IDARG(eid->eid_id),
|
||||
eid->eid_dn.bv_val );
|
||||
return LDAP_OTHER;
|
||||
}
|
||||
}
|
||||
bsi->bsi_oc = eid->eid_oc;
|
||||
bsi->bsi_c_eid = eid;
|
||||
|
||||
ber_dupbv_x( &bsi->bsi_e->e_name, &eid->eid_dn, op->o_tmpmemctx );
|
||||
ber_dupbv_x( &bsi->bsi_e->e_nname, &eid->eid_ndn, op->o_tmpmemctx );
|
||||
|
||||
#ifndef BACKSQL_ARBITRARY_KEY
|
||||
/* FIXME: unused */
|
||||
bsi->bsi_e->e_id = eid->eid_id;
|
||||
|
Loading…
Reference in New Issue
Block a user