Silence "maybe uninitialized" warning (eprev after 0 iterations, cannot happen)

This commit is contained in:
Hallvard Furuseth 2009-11-30 14:00:18 +00:00
parent 31d7966546
commit ca563787ad

View File

@ -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;