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
Joe Martin
OpenLDAP
Commits
669d0211
Commit
669d0211
authored
Jul 12, 2007
by
Pierangelo Masarati
Browse files
import fix for searchFilter double free (ITS#5043)
parent
5ad3ce14
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
669d0211
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.3 Change Log
OpenLDAP 2.3.37 Engineering
Fixed slapd-glue/syncprov interaction (ITS#4623)
Fixed slapd-ldap search reference crash (ITS#5025)
Fixed slapo-rwm searchFilter double free (ITS#5043)
Clarified slapd-perl SampleLDAP.pm usage (ITS#4995)
Documentation
Fixed slapd.conf(5) for default loglevel (ITS#5027)
...
...
servers/slapd/overlays/rwmmap.c
View file @
669d0211
...
...
@@ -768,7 +768,9 @@ rwm_filter_map_rewrite(
case
REWRITE_REGEXEC_OK
:
if
(
!
BER_BVISNULL
(
fstr
)
)
{
fstr
->
bv_len
=
strlen
(
fstr
->
bv_val
);
ch_free
(
ftmp
.
bv_val
);
if
(
fstr
->
bv_val
!=
ftmp
.
bv_val
)
{
ch_free
(
ftmp
.
bv_val
);
}
}
else
{
*
fstr
=
ftmp
;
...
...
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