diff --git a/[refs] b/[refs] index 9c907592a748..d7a6d323f6d8 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2e6113908fe76a06295cb243f1f2f0eea055b0c2 +refs/heads/master: 0928d68056fa25456830b1de9f0ee89bc37447cd diff --git a/trunk/fs/openpromfs/inode.c b/trunk/fs/openpromfs/inode.c index 464e2bce0203..c0cbe97cdc60 100644 --- a/trunk/fs/openpromfs/inode.c +++ b/trunk/fs/openpromfs/inode.c @@ -448,10 +448,11 @@ static ssize_t property_write(struct file *filp, const char __user *buf, *q |= simple_strtoul (tmp, NULL, 16); buf += last_cnt; } else { - char tchars[17]; /* XXX yuck... */ + char tchars[2 * sizeof(long) + 1]; - if (copy_from_user(tchars, buf, 16)) + if (copy_from_user(tchars, buf, sizeof(tchars) - 1)) return -EFAULT; + tchars[sizeof(tchars) - 1] = '\0'; *q = simple_strtoul (tchars, NULL, 16); buf += 9; }