Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Lowden
OpenLDAP
Commits
72122b82
Commit
72122b82
authored
Nov 30, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Dec 02, 2020
Browse files
ITS
#9410
remove assert in csnValidate
parent
87c18eac
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
72122b82
...
...
@@ -5069,9 +5069,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
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