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
e977628e
Commit
e977628e
authored
Aug 17, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6256
parent
f6cc99ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e977628e
...
...
@@ -13,6 +13,7 @@ OpenLDAP 2.4.18 Engineering
Fixed slapd with duplicate empty lines for olcDbConfig (ITS#6240)
Fixed slapd server URL matching (ITS#5942)
Fixed slapd subordinate needs a suffix (ITS#6216)
Fixed slapd syncrepl decrement on possible NULL value (ITS#6256)
Fixed slapd tools to properly close database (ITS#6214)
Fixed slapd uninitialized SlapReply components (ITS#6101)
Fixed slapd-meta starttls with targets (ITS#6190)
...
...
servers/slapd/syncrepl.c
View file @
e977628e
...
...
@@ -3729,12 +3729,14 @@ syncinfo_free( syncinfo_t *sie, int free_all )
}
ch_free
(
npe
);
}
sie
->
si_cookieState
->
cs_ref
--
;
if
(
!
sie
->
si_cookieState
->
cs_ref
)
{
ch_free
(
sie
->
si_cookieState
->
cs_sids
);
ber_bvarray_free
(
sie
->
si_cookieState
->
cs_vals
);
ldap_pvt_thread_mutex_destroy
(
&
sie
->
si_cookieState
->
cs_mutex
);
ch_free
(
sie
->
si_cookieState
);
if
(
sie
->
si_cookieState
)
{
sie
->
si_cookieState
->
cs_ref
--
;
if
(
!
sie
->
si_cookieState
->
cs_ref
)
{
ch_free
(
sie
->
si_cookieState
->
cs_sids
);
ber_bvarray_free
(
sie
->
si_cookieState
->
cs_vals
);
ldap_pvt_thread_mutex_destroy
(
&
sie
->
si_cookieState
->
cs_mutex
);
ch_free
(
sie
->
si_cookieState
);
}
}
ch_free
(
sie
);
sie
=
si_next
;
...
...
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