提交 c7c0d0a1 编写于 作者: A Al Viro

[PATCH] bogus order of copy_from_user() arguments

... aka "somebody forgot to swap arguments when converting from copyin()"
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 38d0d001
......@@ -280,7 +280,7 @@ int RIOBootCodeHOST(struct rio_info *p, struct DownLoad *rbp)
func_exit();
return -ENOMEM;
}
if (copy_from_user(rbp->DataP, DownCode, rbp->Count)) {
if (copy_from_user(DownCode, rbp->DataP, rbp->Count)) {
kfree(DownCode);
p->RIOError.Error = COPYIN_FAILED;
func_exit();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册