Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
498496b9
Commit
498496b9
authored
Jan 11, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6438
parent
46656cb6
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
498496b9
...
...
@@ -102,6 +102,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-syncprov CSN updates to all replicas (ITS#6718)
Fixed slapo-syncprov sessionlog ordering (ITS#6716)
Fixed slapo-syncprov sessionlog with adds (ITS#6503)
Fixed slapo-syncprov mutex (ITS#6438)
Fixed slapo-translucent entry leak (ITS#6746)
Fixed contrib/autogroup LDAP URI with attribute filter (ITS#6536)
Fixed contrib/autogroup install location (ITS#6684)
...
...
servers/slapd/overlays/syncprov.c
View file @
498496b9
...
...
@@ -785,7 +785,8 @@ syncprov_free_syncop( syncops *so )
GroupAssertion
*
ga
,
*
gnext
;
ldap_pvt_thread_mutex_lock
(
&
so
->
s_mutex
);
if
(
--
so
->
s_inuse
>
0
)
{
/* already being freed, or still in use */
if
(
!
so
->
s_inuse
||
--
so
->
s_inuse
>
0
)
{
ldap_pvt_thread_mutex_unlock
(
&
so
->
s_mutex
);
return
;
}
...
...
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