Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
97cc3a09
Commit
97cc3a09
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5779
parent
8052f36d
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
97cc3a09
...
...
@@ -20,6 +20,7 @@ OpenLDAP 2.4.13 Engineering
Added slapd-bdb/hdb checksum keyword
Fixed slapd-ldap snprintf buffer overflow test (ITS#4467)
Fixed slapd-null read controls support (ITS#5757)
Fixed slapd-sql value length with right index (ITS#5779)
Fixed slapo-chain/translucent back-config support (ITS#5736)
Fixed slapo-chain segv with search references (ITS#5742)
Fixed slapo-collect compile with C89 (ITS#5747)
...
...
servers/slapd/back-sql/schema-map.c
View file @
97cc3a09
...
...
@@ -570,7 +570,7 @@ backsql_load_schema_map( backsql_info *bi, SQLHDBC dbh )
int
i
;
for
(
i
=
0
;
required
[
i
].
name
!=
NULL
;
i
++
)
{
if
(
oc_row
.
value_len
[
i
]
<=
0
)
{
if
(
oc_row
.
value_len
[
required
[
i
].
idx
]
<=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"backsql_load_schema_map(): "
"required column #%d
\"
%s
\"
is empty
\n
"
,
...
...
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