Skip to content
Snippets Groups Projects
Commit 255ff20b authored by Xiaobo Liu's avatar Xiaobo Liu Committed by Greg Kroah-Hartman
Browse files

net/atm: fix proc_mpc_write incorrect return value


[ Upstream commit d8bde3bf ]

Then the input contains '\0' or '\n', proc_mpc_write has read them,
so the return value needs +1.

Fixes: 1da177e4 ("Linux-2.6.12-rc2")
Signed-off-by: default avatarXiaobo Liu <cppcoffee@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent fd66e300
No related branches found
No related tags found
2 merge requests!633Update to 6.0.6,!495add modes upto 1920x1080
......@@ -219,11 +219,12 @@ static ssize_t proc_mpc_write(struct file *file, const char __user *buff,
if (!page)
return -ENOMEM;
for (p = page, len = 0; len < nbytes; p++, len++) {
for (p = page, len = 0; len < nbytes; p++) {
if (get_user(*p, buff++)) {
free_page((unsigned long)page);
return -EFAULT;
}
len += 1;
if (*p == '\0' || *p == '\n')
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment