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
fcdbf9f7
Commit
fcdbf9f7
authored
Apr 14, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6459
parent
eac730be
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
fcdbf9f7
...
...
@@ -8,6 +8,7 @@ OpenLDAP 2.4.22 Engineering
Fixed slapo-dynlist REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-rwm olcRwmMap handling (ITS#6436)
Fixed slapo-rwm REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-syncprov memory leak (ITS#6459)
Fixed slapo-valsort REP_ENTRY flag handling (ITS#5340,ITS#6423)
OpenLDAP 2.4.21 Release (2009/12/20)
...
...
servers/slapd/overlays/syncprov.c
View file @
fcdbf9f7
...
...
@@ -931,9 +931,9 @@ syncprov_qplay( Operation *op, syncops *so )
ldap_pvt_thread_mutex_unlock
(
&
so
->
s_mutex
);
if
(
sr
->
s_mode
==
LDAP_SYNC_NEW_COOKIE
)
{
SlapReply
rs
=
{
REP_INTERMEDIATE
};
SlapReply
rs
=
{
REP_INTERMEDIATE
};
rc
=
syncprov_sendinfo
(
op
,
&
rs
,
LDAP_TAG_SYNC_NEW_COOKIE
,
rc
=
syncprov_sendinfo
(
op
,
&
rs
,
LDAP_TAG_SYNC_NEW_COOKIE
,
&
sr
->
s_csn
,
0
,
NULL
,
0
);
}
else
{
opc
.
sdn
=
sr
->
s_dn
;
...
...
@@ -945,11 +945,11 @@ syncprov_qplay( Operation *op, syncops *so )
rc
=
syncprov_sendresp
(
op
,
&
opc
,
so
,
sr
->
s_mode
);
if
(
opc
.
se
)
{
if
(
!
dec_mutexint
(
opc
.
se
->
e_privat
e
)
)
{
opc
.
s
e
->
e_private
=
NULL
;
entry_free
(
opc
.
se
)
;
}
}
if
(
sr
->
s_
e
)
{
if
(
!
dec_mutexint
(
sr
->
s_
e
->
e_private
))
{
sr
->
s_e
->
e_private
=
NULL
;
entry_free
(
sr
->
s_e
);
}
}
...
...
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