aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2012-02-25 01:33:39 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2012-02-25 01:33:39 +0000
commitaa10345311f71942189d0c203095172bc6c809cb (patch)
treea469e89d04f0ad36973224205f219b774b9de574 /sys
parent4fd3565a35475b4703734d4f9e22f362d99c5289 (diff)
downloadsrc-aa10345311f71942189d0c203095172bc6c809cb.tar.gz
src-aa10345311f71942189d0c203095172bc6c809cb.zip
Do not write to the user address directly, use suword().
Reported by: Bengt Ahlgren <bengta sics se> MFC after: 1 week
Notes
Notes: svn path=/head/; revision=232143
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/linux/linux_sysvec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index 7634138cbd10..d4e23e18d36e 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -227,11 +227,11 @@ linux_fixup(register_t **stack_base, struct image_params *imgp)
argv = *stack_base;
envp = *stack_base + (imgp->args->argc + 1);
(*stack_base)--;
- **stack_base = (intptr_t)(void *)envp;
+ suword(*stack_base, (intptr_t)(void *)envp);
(*stack_base)--;
- **stack_base = (intptr_t)(void *)argv;
+ suword(*stack_base, (intptr_t)(void *)argv);
(*stack_base)--;
- **stack_base = imgp->args->argc;
+ suword(*stack_base, imgp->args->argc);
return (0);
}
@@ -286,7 +286,7 @@ elf_linux_fixup(register_t **stack_base, struct image_params *imgp)
imgp->auxargs = NULL;
(*stack_base)--;
- **stack_base = (register_t)imgp->args->argc;
+ suword(*stack_base, (register_t)imgp->args->argc);
return (0);
}