From: Theodore Ts'o Date: Sat, 17 Dec 2011 16:56:35 +0000 (-0500) Subject: e2fsck: fix pass5 bug when using two different bitmap backends X-Git-Tag: v1.42.1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e35ff9b92ac8e1038f9ab972e6f3a73e0091d3ee;p=thirdparty%2Fe2fsprogs.git e2fsck: fix pass5 bug when using two different bitmap backends The pass5 checks would fail if the expected and current {inode,block} bitmaps used different back ends that returned different non-zero values from the test_*_bitmap() functions. Fix this by changing "(actual == bitmap)" to "(!actual == !bitmap)". Signed-off-by: "Theodore Ts'o" --- diff --git a/e2fsck/pass5.c b/e2fsck/pass5.c index a60e84ad5..1e836e3fb 100644 --- a/e2fsck/pass5.c +++ b/e2fsck/pass5.c @@ -279,7 +279,7 @@ redo_counts: else bitmap = ext2fs_fast_test_block_bitmap2(fs->block_map, i); - if (actual == bitmap) + if (!actual == !bitmap) goto do_counts; if (!actual && bitmap) { @@ -511,7 +511,7 @@ redo_counts: bitmap = actual; else if (!skip_group) bitmap = ext2fs_fast_test_inode_bitmap2(fs->inode_map, i); - if (actual == bitmap) + if (!actual == !bitmap) goto do_counts; if (!actual && bitmap) {