[patch] drivers/media/video/bt866.c: array overflows

From: Martin Samuelsson
Date: Mon Aug 21 2006 - 17:57:50 EST


This extends reg in the bt866 struct from 128 to 256 bytes, which will prevent a number of array overflows later in the code.

Signed-off-by: Martin Samuelsson <sam@xxxxxxx>

---

bt866.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- /usr/src/linux-2.6.18-rc4/drivers/media/video/bt866.c 2006-08-21 22:59:16.000000000 +0200
+++ /usr/src/linux-2.6.18-rc4-avs6eyes/drivers/media/video/bt866.c 2006-08-21 21:51:14.000000000 +0200
@@ -65,7 +65,7 @@
struct bt866 {
struct i2c_client *i2c;
int addr;
- unsigned char reg[128];
+ unsigned char reg[256];

int norm;
int enable;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/