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
f2e88c34
Commit
f2e88c34
authored
Mar 17, 2009
by
Quanah Gibson-Mount
Browse files
don't short circuit callback list
free self in case anything goes wrong
parent
b6f4b3de
Changes
1
Hide whitespace changes
Inline
Side-by-side
contrib/slapd-modules/cloak/cloak.c
View file @
f2e88c34
...
...
@@ -269,8 +269,8 @@ cloak_search( Operation *op, SlapReply *rs )
sc
=
op
->
o_tmpcalloc
(
1
,
sizeof
(
*
sc
),
op
->
o_tmpmemctx
);
sc
->
sc_response
=
cloak_search_cb
;
sc
->
sc_cleanup
=
NULL
;
sc
->
sc_next
=
NULL
;
sc
->
sc_cleanup
=
slap_freeself_cb
;
sc
->
sc_next
=
op
->
o_callback
;
sc
->
sc_private
=
ci
;
op
->
o_callback
=
sc
;
...
...
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