dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] bogus order of copy_from_user() arguments

... aka "somebody forgot to swap arguments when converting from copyin()"

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2006-05-27 00:19:54 -04:00
parent 38d0d001b9
commit c7c0d0a10f
1 changed files with 1 additions and 1 deletions

View File

@ -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();