From: Jiri Kosina Date: Wed, 17 Sep 2008 17:41:58 +0000 (+0200) Subject: HID: fix incorrent length condition in hidraw_write() X-Git-Tag: v2.6.28-rc1~571^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b107d629dc0c35de606bb7b010b829cd247a93a;p=pandora-kernel.git HID: fix incorrent length condition in hidraw_write() The bound check on the buffer length if (count > HID_MIN_BUFFER_SIZE) is of course incorrent, the proper check is if (count > HID_MAX_BUFFER_SIZE) Fix it. Reported-by: Jerry Ryle Signed-off-by: Jiri Kosina --- Reading git-diff-tree failed