Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
b498a922
Commit
b498a922
authored
Dec 11, 2004
by
Pierangelo Masarati
Browse files
better fix to ITS#3433
parent
0fe40e4e
Changes
2
Show whitespace changes
Inline
Side-by-side
servers/slapd/backover.c
View file @
b498a922
...
...
@@ -260,10 +260,9 @@ over_op_func(
slap_callback
cb
=
{
NULL
,
over_back_response
,
NULL
,
NULL
};
int
rc
=
SLAP_CB_CONTINUE
;
if
(
op
->
o_bd
==
NULL
)
{
/* FIXME: happens for instance during abandon... */
return
0
;
}
/* FIXME: used to happen for instance during abandon
* when global overlays are used... */
assert
(
op
->
o_bd
!=
NULL
);
oi
=
op
->
o_bd
->
bd_info
->
bi_private
;
on
=
oi
->
oi_list
;
...
...
servers/slapd/connection.c
View file @
b498a922
...
...
@@ -722,6 +722,7 @@ static void connection_abandon( Connection *c )
next
=
LDAP_STAILQ_NEXT
(
o
,
o_next
);
op
.
orn_msgid
=
o
->
o_msgid
;
o
->
o_abandon
=
1
;
op
.
o_bd
=
frontendDB
;
frontendDB
->
be_abandon
(
&
op
,
&
rs
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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