Skip to content

Commit

Permalink
Merge tag 'usb-ci-v4.1-rc3' of git://git.kernel.org/pub/scm/linux/ker…
Browse files Browse the repository at this point in the history
…nel/git/peter.chen/usb into usb-linus

Peter writes:

Only a small fix for /sys entry
  • Loading branch information
Greg Kroah-Hartman committed May 9, 2015
2 parents 99c605a + bd5fb0a commit 17aeca1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/usb/chipidea/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,13 @@ static ssize_t ci_port_test_write(struct file *file, const char __user *ubuf,
char buf[32];
int ret;

if (copy_from_user(buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
count = min_t(size_t, sizeof(buf) - 1, count);
if (copy_from_user(buf, ubuf, count))
return -EFAULT;

/* sscanf requires a zero terminated string */
buf[count] = '\0';

if (sscanf(buf, "%u", &mode) != 1)
return -EINVAL;

Expand Down

0 comments on commit 17aeca1

Please sign in to comment.