]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: cumana: Fix a long standing bogon
authorAlan Cox <alan@lxorguk.ukuu.org.uk>
Mon, 23 Mar 2009 10:37:57 +0000 (10:37 +0000)
committerChris Wright <chrisw@sous-sol.org>
Thu, 2 Apr 2009 20:55:18 +0000 (13:55 -0700)
upstream commit: ecbf61e7357d5c7047c813edd6983902d158688c

Should be using strncmp as the data from user space may be unterminated

(Bug #8004)

Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
drivers/scsi/arm/cumana_2.c

index 68a64123af8f9fd28379a640d7a00b4f6ddcdd39..ed502b7412d69f8bc8adbc3d62ca99678cb83eb0 100644 (file)
@@ -318,7 +318,7 @@ cumanascsi_2_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
 {
        int ret = length;
 
-       if (length >= 11 && strcmp(buffer, "CUMANASCSI2") == 0) {
+       if (length >= 11 && strncmp(buffer, "CUMANASCSI2", 11) == 0) {
                buffer += 11;
                length -= 11;