Skip to content
Snippets Groups Projects
Commit 97cc3a09 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5779

parent 8052f36d
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment