[Linux-parport] [2.6 patch] drivers/block/paride/pd.c: fix an off-by-one

Adrian Bunk bunk at stusta.de
Fri Mar 10 22:42:53 EST 2006


The Coverity checker found this off-by-one error.


Signed-off-by: Adrian Bunk <bunk at stusta.de>

--- linux-2.6.16-rc5-mm3-full/drivers/block/paride/pd.c.old	2006-03-11 02:07:21.000000000 +0100
+++ linux-2.6.16-rc5-mm3-full/drivers/block/paride/pd.c	2006-03-11 02:07:50.000000000 +0100
@@ -275,7 +275,7 @@
 	int i;
 
 	printk("%s: %s: status = 0x%x =", disk->name, msg, status);
-	for (i = 0; i < 18; i++)
+	for (i = 0; i < 17; i++)
 		if (status & (1 << i))
 			printk(" %s", pd_errs[i]);
 	printk("\n");




More information about the Linux-parport mailing list