[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <874o3rimbn.wl%ysato@users.sourceforge.jp>
Date: Wed, 15 Jun 2011 16:30:04 +0900
From: Yoshinori Sato <ysato@...rs.sourceforge.jp>
To: uclinux-dev@...inux.org, linux-kernel@...r.kernel.org
Subject: [PATCH] binfmt_flat: missing argv table
"put_user" is multiple times evalute on argument
(in asm-generic/uaccess.h).
So this code building argv table include gabage.
Signed-off-by: Yoshinori Sato <ysato@...rs.sourceforge.jp>
diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c
index 811384b..127a198 100644
--- a/fs/binfmt_flat.c
+++ b/fs/binfmt_flat.c
@@ -144,7 +144,7 @@ static unsigned long create_flat_tables(
put_user(argc, sp);
current->mm->arg_start = (unsigned long) p;
while (argc-->0) {
- put_user((unsigned long) p, argv++);
+ put_user((unsigned long) p, argv); argv++;
do {
get_user(dummy, p); p++;
} while (dummy);
--
Yoshinori Sato
<ysato@...rs.sourceforge.jp>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists