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
65f40d9e
Commit
65f40d9e
authored
Jun 10, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6568
parent
f190531e
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
65f40d9e
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.23 Engineering
Fixed libldap memleaks (ITS#6568)
Fixed liblutil off-by-one with delta (ITS#6541)
Fixed slapd syncrepl rid logging (ITS#6533)
Fixed slapd-bdb hasSubordinates computation (ITS#6549)
...
...
libraries/libldap/request.c
View file @
65f40d9e
...
...
@@ -124,10 +124,14 @@ ldap_send_initial_request(
if
(
ld
->
ld_options
.
ldo_cldapdn
)
ldap_memfree
(
ld
->
ld_options
.
ldo_cldapdn
);
ld
->
ld_options
.
ldo_cldapdn
=
ldap_strdup
(
dn
);
ber_free
(
ber
,
1
);
return
0
;
}
if
(
msgtype
!=
LDAP_REQ_ABANDON
&&
msgtype
!=
LDAP_REQ_SEARCH
)
{
ber_free
(
ber
,
1
);
return
LDAP_PARAM_ERROR
;
}
}
#endif
#ifdef LDAP_R_COMPILE
...
...
libraries/libldap/unbind.c
View file @
65f40d9e
...
...
@@ -154,6 +154,11 @@ ldap_ld_free(
LDAP_FREE
(
ld
->
ld_options
.
ldo_peer
);
ld
->
ld_options
.
ldo_peer
=
NULL
;
}
if
(
ld
->
ld_options
.
ldo_cldapdn
!=
NULL
)
{
LDAP_FREE
(
ld
->
ld_options
.
ldo_cldapdn
);
ld
->
ld_options
.
ldo_cldapdn
=
NULL
;
}
#endif
#ifdef HAVE_CYRUS_SASL
...
...
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