diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-10-01 02:28:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:24 -0400 |
commit | 095d030cff0eafd29ee31e022d374874146a5b4c (patch) | |
tree | cec6f1906b77ed55f71933bd090097487d5da976 | |
parent | 1cfee2b3c21d71a8c20884dbb77ed343558db87f (diff) |
[PATCH] Off-by-one in drivers/char/mwave/mwavedd.c
This fixes two off by ones in the mwave driver, found
via find -iname \*.[ch] | xargs grep "> ARRAY_SIZE("
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/char/mwave/mwavedd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/mwave/mwavedd.c b/drivers/char/mwave/mwavedd.c index 39a2e661ff55..8d14823b0514 100644 --- a/drivers/char/mwave/mwavedd.c +++ b/drivers/char/mwave/mwavedd.c | |||
@@ -297,7 +297,7 @@ static int mwave_ioctl(struct inode *inode, struct file *file, | |||
297 | " ipcnum %x, usIntCount %x\n", | 297 | " ipcnum %x, usIntCount %x\n", |
298 | ipcnum, | 298 | ipcnum, |
299 | pDrvData->IPCs[ipcnum].usIntCount); | 299 | pDrvData->IPCs[ipcnum].usIntCount); |
300 | if (ipcnum > ARRAY_SIZE(pDrvData->IPCs)) { | 300 | if (ipcnum >= ARRAY_SIZE(pDrvData->IPCs)) { |
301 | PRINTK_ERROR(KERN_ERR_MWAVE | 301 | PRINTK_ERROR(KERN_ERR_MWAVE |
302 | "mwavedd::mwave_ioctl:" | 302 | "mwavedd::mwave_ioctl:" |
303 | " IOCTL_MW_GET_IPC: Error:" | 303 | " IOCTL_MW_GET_IPC: Error:" |
@@ -355,7 +355,7 @@ static int mwave_ioctl(struct inode *inode, struct file *file, | |||
355 | "mwavedd::mwave_ioctl IOCTL_MW_UNREGISTER_IPC" | 355 | "mwavedd::mwave_ioctl IOCTL_MW_UNREGISTER_IPC" |
356 | " ipcnum %x\n", | 356 | " ipcnum %x\n", |
357 | ipcnum); | 357 | ipcnum); |
358 | if (ipcnum > ARRAY_SIZE(pDrvData->IPCs)) { | 358 | if (ipcnum >= ARRAY_SIZE(pDrvData->IPCs)) { |
359 | PRINTK_ERROR(KERN_ERR_MWAVE | 359 | PRINTK_ERROR(KERN_ERR_MWAVE |
360 | "mwavedd::mwave_ioctl:" | 360 | "mwavedd::mwave_ioctl:" |
361 | " IOCTL_MW_UNREGISTER_IPC:" | 361 | " IOCTL_MW_UNREGISTER_IPC:" |