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
bdb0d459
Commit
bdb0d459
authored
Nov 02, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Nov 02, 2020
Browse files
ITS#9384 remove assert in obsolete csnNormalize23()
parent
a3e93e5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
bdb0d459
...
...
@@ -5327,8 +5327,8 @@ csnNormalize23(
}
*
ptr
=
'\0'
;
assert
(
ptr
=
=
&
bv
.
bv_val
[
bv
.
bv_len
]
);
if
(
csnValidate
(
syntax
,
&
bv
)
!=
LDAP_SUCCESS
)
{
if
(
ptr
!
=
&
bv
.
bv_val
[
bv
.
bv_len
]
||
csnValidate
(
syntax
,
&
bv
)
!=
LDAP_SUCCESS
)
{
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