summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/bt866.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2006-08-18 12:40:28 +0200
committerMauro Carvalho Chehab2006-09-26 17:30:32 +0200
commit0d0d871b3f3395820ec33a78fb2cc101b9bdcced (patch)
tree272019d21a2dc5f3bbddee6c6c533dd666eb1149 /drivers/media/video/bt866.c
parentV4L/DVB (4507): Make tvp5150 an independent Kconfig item (diff)
downloadkernel-qcow2-linux-0d0d871b3f3395820ec33a78fb2cc101b9bdcced.tar.gz
kernel-qcow2-linux-0d0d871b3f3395820ec33a78fb2cc101b9bdcced.tar.xz
kernel-qcow2-linux-0d0d871b3f3395820ec33a78fb2cc101b9bdcced.zip
V4L/DVB (4508): Fix an array overflow on bt866
The Coverity checker spotted the following two array overflows. Registers 0xcc and 0xdc were cached on reg[] array, with only 128 elements, instead of 256. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bt866.c')
-rw-r--r--drivers/media/video/bt866.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt866.c b/drivers/media/video/bt866.c
index 05e42bbcfc3d..772fd52d551a 100644
--- a/drivers/media/video/bt866.c
+++ b/drivers/media/video/bt866.c
@@ -65,7 +65,7 @@ MODULE_LICENSE("GPL");
struct bt866 {
struct i2c_client *i2c;
int addr;
- unsigned char reg[128];
+ unsigned char reg[256];
int norm;
int enable;