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
5a487771
Commit
5a487771
authored
Aug 13, 2007
by
Pierangelo Masarati
Browse files
import fix to ITS#5090
parent
6e8ee224
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5a487771
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.3.38 Engineering
Fixed slapd select_backend/ManageDSAit (ITS#4986)
Fixed slapd integer/pointer types and overflow (ITS#5035)
Fixed slapd AVA_Sort on multivalued RDNs (ITS#5057)
Fixed slapd LDIF parsing error handling (ITS#5090)
Fixed slapd syncrepl searchbase scope (ITS#5073)
Fixed slapd-bdb missing index warning (ITS#5037)
Fixed slapd-bdb Quick index for ID 0 (ITS#5052)
...
...
servers/slapd/entry.c
View file @
5a487771
...
...
@@ -278,6 +278,14 @@ str2entry2( char *s, int checkvals )
if
(
i
==
lines
)
break
;
}
if
(
BER_BVISNULL
(
&
vals
[
i
]
)
)
{
Debug
(
LDAP_DEBUG_ANY
,
"str2entry: attributeType %s #%d: "
"no values
\n
"
,
ad
->
ad_cname
.
bv_val
,
attr_cnt
,
0
);
goto
fail
;
}
if
(
slapMode
&
SLAP_TOOL_MODE
)
{
struct
berval
pval
;
slap_syntax_validate_func
*
validate
=
...
...
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