mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Issue#9239 - Fix case where e->e_dn may be NULL causing a segfault on some platforms
This commit is contained in:
parent
f926e66723
commit
4e8f91304e
1 changed files with 1 additions and 1 deletions
|
|
@ -513,7 +513,7 @@ oc_check_required(
|
|||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"oc_check_required entry (%s), objectClass \"%s\"\n",
|
||||
e->e_dn, ocname->bv_val );
|
||||
e->e_dn?e->e_dn:"(null)", ocname->bv_val );
|
||||
|
||||
|
||||
/* check for empty oc_required */
|
||||
|
|
|
|||
Loading…
Reference in a new issue