[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20070521180752.c0afc106.zaitcev@redhat.com>
Date: Mon, 21 May 2007 18:07:52 -0700
From: Pete Zaitcev <zaitcev@...hat.com>
To: Eric Sesterhenn / Snakebyte <snakebyte@....de>
Cc: linux-kernel@...r.kernel.org
Subject: Re: [Patch] Off by one in floppy.c
On Tue, 22 May 2007 00:57:56 +0200, Eric Sesterhenn / Snakebyte <snakebyte@....de> wrote:
> http://marc.info/?l=linux-kernel&m=115144559823592&w=2
Shows how much we care about floppy... It's going to be a year old soon.
> +++ 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) {
You need to find someone willing to take this. Maybe Andrew.
-- Pete
-
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