Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
e6303acc
Commit
e6303acc
authored
Aug 17, 2006
by
Kurt Zeilenga
Browse files
Add ITS#4644 fix for DN X.509 normalization crash
parent
d84afed0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e6303acc
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.3.26 Release
Fixed libldap dnssrv bug with "not present" positive statement (ITS#4610)
Fixed libldap dangling pointer issue (ITS#4405)
Fixed slapd incorrect rebuilding of replica URI (ITS#4633)
Fixed slapd DN X.509 normalization crash (ITS#4644)
Fixed slapd-monitor operations order via callbacks (ITS#4631)
Fixed slapo-accesslog purge task during shutdown
Fixed slapo-ppolicy handling of default policy (ITS#4634)
...
...
servers/slapd/dn.c
View file @
e6303acc
...
...
@@ -1410,7 +1410,8 @@ dnX509normalize( void *x509_name, struct berval *out )
int
rc
=
ldap_X509dn2bv
(
x509_name
,
out
,
LDAPDN_rewrite
,
0
);
Debug
(
LDAP_DEBUG_TRACE
,
"dnX509Normalize: <%s>
\n
"
,
out
->
bv_val
,
0
,
0
);
"dnX509Normalize: <%s> (%d)
\n
"
,
BER_BVISNULL
(
out
)
?
"(null)"
:
out
->
bv_val
,
rc
,
0
);
return
rc
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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