[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070521225755.GC16194@alice>
Date: Tue, 22 May 2007 00:57:56 +0200
From: Eric Sesterhenn / Snakebyte <snakebyte@....de>
To: linux-kernel@...r.kernel.org
Cc: zaitcev@...hat.com
Subject: [Patch] Off by one in floppy.c
hi,
another coverity patch i forgot to resend,
original thread here
http://marc.info/?l=linux-kernel&m=115144559823592&w=2
In case drive == N_DRIVE, we get one past the drive_params array.
Signed-off-by: Eric Sesterhenn <snakebyte@....de>
--- linux-2.6/drivers/block/floppy.c.orig 2007-05-22 00:54:03.000000000 +0200
+++ linux-2.6/drivers/block/floppy.c 2007-05-22 00:54:18.000000000 +0200
@@ -670,7 +670,7 @@ static void __reschedule_timeout(int dri
if (drive == current_reqD)
drive = current_drive;
del_timer(&fd_timeout);
- if (drive < 0 || drive > N_DRIVE) {
+ if (drive < 0 || drive >= N_DRIVE) {
fd_timeout.expires = jiffies + 20UL * HZ;
drive = 0;
} else
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists