Skip to content
Snippets Groups Projects
Commit 9f5dafbe authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

import re-fix of ITS#5121

parent 9a94f400
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,10 @@ OpenLDAP 2.4.6 Engineering
Fixed slapd alock_close with Quick mode (ITS#5129)
Fixed slapd ordered values add normalization issue (ITS#5136)
Fixed slapd-bdb/hdb suffix logging (ITS#5128)
Fixed slapd-bdb/hdb IDL LRU handling (ITS#5121)
Fixed slapd-ldap SASL idassert w/o authcId
Fixed slapd-meta conn caching on bind failure (ITS#5154)
Fixed slapd-meta leak when binding as rootdn (ITS#5155)
Fixed slapd-meta conn caching on bind failure (ITS#5154)
Fixed slapo-chain double-free (ITS#5137)
Fixed slapo-dynlist entry release (ITS#5135)
Fixed slapo-rwm modlist handling (ITS#5124)
......
......@@ -379,7 +379,7 @@ bdb_idl_cache_put(
if ( ++bdb->bi_idl_cache_size > bdb->bi_idl_cache_max_size ) {
int i;
ee = bdb->bi_idl_lru_tail;
for ( i = 0; i < 10; i++, ee = eprev ) {
for ( i = 0; ee != NULL && i < 10; i++, ee = eprev ) {
eprev = ee->idl_lru_prev;
if ( eprev == ee ) {
eprev = NULL;
......
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