Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
4e8f9130
Commit
4e8f9130
authored
May 26, 2020
by
Quanah Gibson-Mount
Browse files
Issue#9239 - Fix case where e->e_dn may be NULL causing a segfault on some platforms
parent
f926e667
Pipeline
#423
passed with stage
in 28 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_check.c
View file @
4e8f9130
...
...
@@ -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 */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment