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
63287d79
Commit
63287d79
authored
Jan 03, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6634
parent
f6bc2aff
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
63287d79
...
...
@@ -14,6 +14,7 @@ OpenLDAP 2.4.24 Engineering
Fixed liblutil getpass prompts (ITS#6702)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd config leak with olcDbDirectory (ITS#6634)
Fixed slapd filter leak (ITS#6635)
Fixed slapd when first acl is value dependent (ITS#6693)
Fixed slapd modify to return actual error (ITS#6581)
...
...
servers/slapd/config.c
View file @
63287d79
...
...
@@ -467,7 +467,7 @@ config_get_vals(ConfigTable *cf, ConfigArgs *c)
c
->
value_string
=
ch_strdup
(
*
(
char
**
)
ptr
);
break
;
case
ARG_BERVAL
:
ber_dupbv
(
&
c
->
value_bv
,
(
struct
berval
*
)
ptr
);
break
;
c
->
value_bv
=
*
(
(
struct
berval
*
)
ptr
);
break
;
case
ARG_ATDESC
:
c
->
value_ad
=
*
(
AttributeDescription
**
)
ptr
;
break
;
}
...
...
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