Staging: unisys: virthba: Fix variable length array
authorKen Cox <jkc@redhat.com>
Fri, 7 Mar 2014 16:30:27 +0000 (10:30 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 9 Mar 2014 06:42:14 +0000 (22:42 -0800)
A character array was declared on the stack with variable length.  This has
been corrected to use a fixed length.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Ken Cox <jkc@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/virthba/virthba.c

index c292293718f0b420c141a8236dd789b82c085a2c..277851fff443e809cadc0f3bc1e294eb2dc31e7a 100644 (file)
@@ -1439,12 +1439,15 @@ static ssize_t
 enable_ints_write(struct file *file, const char __user *buffer,
                  size_t count, loff_t *ppos)
 {
-       char buf[count + 1];
+       char buf[4];
        int i, new_value;
        struct virthba_info *virthbainfo;
        U64 *Features_addr;
        U64 mask;
 
+       if (count >= ARRAY_SIZE(buf))
+               return -EINVAL;
+
        buf[count] = '\0';
        if (copy_from_user(buf, buffer, count)) {
                LOGERR("copy_from_user failed. buf<<%.*s>> count<<%lu>>\n",
This page took 0.024824 seconds and 5 git commands to generate.