Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
176339e7
Commit
176339e7
authored
Dec 06, 2002
by
Kurt Zeilenga
Browse files
ITS#2219: empty value return filter control bug
parent
0d9ca77f
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/controls.c
View file @
176339e7
...
...
@@ -567,6 +567,11 @@ int parseValuesReturnFilter (
return
LDAP_PROTOCOL_ERROR
;
}
if
(
ctrl
->
ldctl_value
.
bv_len
==
0
)
{
*
text
=
"valuesreturnfilter control value is empty"
;
return
LDAP_PROTOCOL_ERROR
;
}
ber
=
ber_init
(
&
(
ctrl
->
ldctl_value
)
);
if
(
ber
==
NULL
)
{
*
text
=
"internal error"
;
...
...
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