aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/proc.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/acpi/proc.c b/drivers/acpi/proc.c
index 27adb090bb30..ef98796b3824 100644
--- a/drivers/acpi/proc.c
+++ b/drivers/acpi/proc.c
@@ -362,16 +362,13 @@ acpi_system_write_wakeup_device(struct file *file,
362 struct list_head *node, *next; 362 struct list_head *node, *next;
363 char strbuf[5]; 363 char strbuf[5];
364 char str[5] = ""; 364 char str[5] = "";
365 unsigned int len = count;
366 365
367 if (len > 4) 366 if (count > 4)
368 len = 4; 367 count = 4;
369 if (len < 0)
370 return -EFAULT;
371 368
372 if (copy_from_user(strbuf, buffer, len)) 369 if (copy_from_user(strbuf, buffer, count))
373 return -EFAULT; 370 return -EFAULT;
374 strbuf[len] = '\0'; 371 strbuf[count] = '\0';
375 sscanf(strbuf, "%s", str); 372 sscanf(strbuf, "%s", str);
376 373
377 mutex_lock(&acpi_device_lock); 374 mutex_lock(&acpi_device_lock);