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
96a068cc
Commit
96a068cc
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6640
parent
8af02353
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
96a068cc
...
...
@@ -7,6 +7,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
Fixed slapd-null back-config support (ITS#6624)
Fixed slapo-pcache callback freeing (ITS#6640)
Fixed slapo-ppolicy don't update opattrs on consumers (ITS#6608)
Fixed slapo-syncprov to send error if consumer is newer (ITS#6606)
...
...
servers/slapd/overlays/pcache.c
View file @
96a068cc
...
...
@@ -2389,8 +2389,7 @@ over:;
entry_free
(
si
->
head
);
}
}
op
->
o_callback
=
op
->
o_callback
->
sc_next
;
op
->
o_tmpfree
(
cb
,
op
->
o_tmpmemctx
);
}
else
if
(
si
->
caching_reason
!=
PC_IGNORE
)
{
CachedQuery
*
qc
=
qm
->
addfunc
(
op
,
qm
,
&
si
->
query
,
si
->
qtemp
,
si
->
caching_reason
,
1
);
...
...
@@ -2446,6 +2445,9 @@ over:;
}
else
{
filter_free
(
si
->
query
.
filter
);
}
op
->
o_callback
=
op
->
o_callback
->
sc_next
;
op
->
o_tmpfree
(
cb
,
op
->
o_tmpmemctx
);
}
return
SLAP_CB_CONTINUE
;
...
...
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