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
0c856f1b
Commit
0c856f1b
authored
Nov 30, 2020
by
Howard Chu
Browse files
ITS
#9410
remove assert in csnValidate
parent
b1c1a5eb
Changes
1
Show whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
0c856f1b
...
...
@@ -5144,9 +5144,8 @@ csnValidate(
int
rc
;
assert
(
in
!=
NULL
);
assert
(
!
BER_BVISNULL
(
in
)
);
if
(
BER_BVISEMPTY
(
in
)
)
{
if
(
BER_BVISNULL
(
in
)
||
BER_BVISEMPTY
(
in
)
)
{
return
LDAP_INVALID_SYNTAX
;
}
...
...
Write
Preview
Markdown
is supported
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