From: Al Viro Date: Sat, 27 May 2006 04:19:54 +0000 (-0400) Subject: [PATCH] bogus order of copy_from_user() arguments X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c7c0d0a10f6e4cea95ed84adcdd37948cac09b85;p=mv-sheeva.git [PATCH] bogus order of copy_from_user() arguments ... aka "somebody forgot to swap arguments when converting from copyin()" Signed-off-by: Al Viro --- diff --git a/drivers/char/rio/rioboot.c b/drivers/char/rio/rioboot.c index b9abbd0e7ec..eca2b95343e 100644 --- a/drivers/char/rio/rioboot.c +++ b/drivers/char/rio/rioboot.c @@ -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();