Re: [PATCH 06/12] block/swim: Fix array bounds check

From: Finn Thain
Date: Mon Apr 09 2018 - 21:10:32 EST


On Mon, 9 Apr 2018, Geert Uytterhoeven wrote:

> Looks like amiflop.c:find_floppy() needs a check, too?
>

AFAICS there is no array index bug in floppy_find() in amiflop.c.
The 'unit' array's size is FD_MAX_UNITS which is defined as 4 in
include/linux/amifd.h, and the array index is drive = *part & 3.

--