mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Silence "maybe uninitialized" warning (eprev after 0 iterations, cannot happen)
This commit is contained in:
parent
31d7966546
commit
ca563787ad
@ -378,8 +378,8 @@ 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; ee != NULL && i < 10; i++, ee = eprev ) {
|
||||
eprev = bdb->bi_idl_lru_tail;
|
||||
for ( i = 0; (ee = eprev) != NULL && i < 10; i++ ) {
|
||||
eprev = ee->idl_lru_prev;
|
||||
if ( eprev == ee ) {
|
||||
eprev = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user