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
f94d411f
Commit
f94d411f
authored
Mar 22, 2007
by
Pierangelo Masarati
Browse files
fix test in case of bailout (ITS#4891)
parent
e95e1bcb
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f94d411f
...
...
@@ -10,6 +10,7 @@ OpenLDAP 2.3.35 Engineering
Fixed slapd-meta search cleanup
Fixed slapd-meta/slapo-rwm filter mapping
Fixed slapd-sql subtree shortcut (ITS#4856)
Fixed slapo-dynlist crasher (ITS#4891)
Fixed slapo-refint config message (ITS#4853)
Fixed libldap time_t signedness (ITS#4872)
Fixed libldap_r tpool reset (ITS#4855)
...
...
servers/slapd/overlays/dynlist.c
View file @
f94d411f
...
...
@@ -480,7 +480,8 @@ cleanup:;
if
(
!
BER_BVISNULL
(
&
o
.
o_req_ndn
)
)
{
op
->
o_tmpfree
(
o
.
o_req_ndn
.
bv_val
,
op
->
o_tmpmemctx
);
}
assert
(
o
.
ors_filterstr
.
bv_val
!=
lud
->
lud_filter
);
assert
(
BER_BVISNULL
(
&
o
.
ors_filterstr
)
||
o
.
ors_filterstr
.
bv_val
!=
lud
->
lud_filter
);
op
->
o_tmpfree
(
o
.
ors_filterstr
.
bv_val
,
op
->
o_tmpmemctx
);
ldap_free_urldesc
(
lud
);
}
...
...
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