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
8d6fb9e6
Commit
8d6fb9e6
authored
Mar 05, 2009
by
Quanah Gibson-Mount
Browse files
ITS#5976
parent
c129744f
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8d6fb9e6
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.16 Engineering
Fixed libldap segfault in checking cert/DN (ITS#5976)
OpenLDAP 2.4.15 Release (2009/02/24)
Fixed libldap alias dereferencing in C API again (ITS#5916)
...
...
libraries/libldap/tls2.c
View file @
8d6fb9e6
...
...
@@ -872,8 +872,9 @@ ldap_pvt_tls_get_my_dn( void *s, struct berval *dn, LDAPDN_rewrite_dummy *func,
struct
berval
der_dn
;
int
rc
;
tls_imp
->
ti_session_my_dn
(
session
,
&
der_dn
);
rc
=
ldap_X509dn2bv
(
&
der_dn
,
dn
,
(
LDAPDN_rewrite_func
*
)
func
,
flags
);
rc
=
tls_imp
->
ti_session_my_dn
(
session
,
&
der_dn
);
if
(
rc
==
LDAP_SUCCESS
)
rc
=
ldap_X509dn2bv
(
&
der_dn
,
dn
,
(
LDAPDN_rewrite_func
*
)
func
,
flags
);
return
rc
;
}
#endif
/* HAVE_TLS */
...
...
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