diff mbox

gamecon: fix off by one range check

Message ID 20100303070544.GB5086@bicker (mailing list archive)
State Accepted
Commit 5bc923c505926af927d4f3011da92c243787d6a7
Headers show

Commit Message

Dan Carpenter March 3, 2010, 7:05 a.m. UTC
None
diff mbox

Patch

diff --git a/drivers/input/joystick/gamecon.c b/drivers/input/joystick/gamecon.c
index ae998d9..7a55714 100644
--- a/drivers/input/joystick/gamecon.c
+++ b/drivers/input/joystick/gamecon.c
@@ -819,7 +819,7 @@  static int __init gc_setup_pad(struct gc *gc, int idx, int pad_type)
 	int i;
 	int err;
 
-	if (pad_type < 1 || pad_type > GC_MAX) {
+	if (pad_type < 1 || pad_type >= GC_MAX) {
 		pr_err("Pad type %d unknown\n", pad_type);
 		return -EINVAL;
 	}