staging: spectra: don't read past array in Conv_Spare_Data_Log2Phy_Format()
authorroel kluin <roel.kluin@gmail.com>
Mon, 3 Jan 2011 19:59:14 +0000 (11:59 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 21 Jan 2011 20:13:07 +0000 (12:13 -0800)
It should decrement or we read past the array

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/spectra/lld_nand.c

index 2263d3e..0be7adc 100644 (file)
@@ -1400,7 +1400,7 @@ void Conv_Spare_Data_Log2Phy_Format(u8 *data)
        const u32 PageSpareSize  = DeviceInfo.wPageSpareSize;
 
        if (enable_ecc) {
-               for (i = spareFlagBytes - 1; i >= 0; i++)
+               for (i = spareFlagBytes - 1; i >= 0; i--)
                        data[PageSpareSize - spareFlagBytes + i] = data[i];
        }
 }