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
Joe Martin
OpenLDAP
Commits
bd0370b2
Commit
bd0370b2
authored
Mar 05, 2007
by
Pierangelo Masarati
Browse files
fix tpool key reset (ITS#4855)
parent
20bcf7fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
bd0370b2
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.3.35 Engineering
Fixed slapd-bdb/hdb startup with missing shm env (ITS#4851)
Fixed slapd-meta/slapo-rwm filter mapping
Fixed slapo-refint config message (ITS#4853)
Fixed libldap_r tpool reset (ITS#4855)
OpenLDAP 2.3.34 Release (2007/02/16)
Fixed libldap missing get_option(TLS CipherSuite) (ITS#4815)
...
...
libraries/libldap_r/tpool.c
View file @
bd0370b2
...
...
@@ -664,7 +664,7 @@ void ldap_pvt_thread_pool_context_reset( void *vctx )
int
i
;
for
(
i
=
MAXKEYS
-
1
;
i
>=
0
;
i
--
)
{
if
(
ctx
[
i
].
ltk_key
)
if
(
ctx
[
i
].
ltk_key
==
NULL
)
continue
;
if
(
ctx
[
i
].
ltk_free
)
ctx
[
i
].
ltk_free
(
ctx
[
i
].
ltk_key
,
ctx
[
i
].
ltk_data
);
...
...
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