# HG changeset patch # User Timo Sirainen # Date 1224231184 -10800 # Node ID 1e0b1888a876078736c4749ba71232b87c5a5a66 # Parent a0c05c33f8382484faf30632493d26df9348770e uninitialized variable fix diff -r a0c05c33f838 -r 1e0b1888a876 src/lib-index/mail-index-strmap.c --- a/src/lib-index/mail-index-strmap.c Thu Oct 16 16:19:37 2008 +0300 +++ b/src/lib-index/mail-index-strmap.c Fri Oct 17 11:13:04 2008 +0300 @@ -1121,7 +1121,7 @@ i_stream_sync(view->strmap->input); i_stream_seek(view->strmap->input, view->last_read_block_offset); - full_block = TRUE; + full_block = TRUE; ret = 0; while (i < old_count && (ret = strmap_read_block_init(view, &ctx)) > 0) { while ((ret = strmap_read_block_next(&ctx, &crc32)) > 0) {