diff options
-rw-r--r-- | arch/x86_64/ia32/ptrace32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/ia32/ptrace32.c b/arch/x86_64/ia32/ptrace32.c index d18198ed636b..3a7561d4703e 100644 --- a/arch/x86_64/ia32/ptrace32.c +++ b/arch/x86_64/ia32/ptrace32.c | |||
@@ -205,9 +205,9 @@ static int getreg32(struct task_struct *child, unsigned regno, u32 *val) | |||
205 | static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data) | 205 | static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data) |
206 | { | 206 | { |
207 | int ret; | 207 | int ret; |
208 | compat_siginfo_t *si32 = (compat_siginfo_t *)compat_ptr(data); | 208 | compat_siginfo_t __user *si32 = compat_ptr(data); |
209 | siginfo_t ssi; | 209 | siginfo_t ssi; |
210 | siginfo_t *si = compat_alloc_user_space(sizeof(siginfo_t)); | 210 | siginfo_t __user *si = compat_alloc_user_space(sizeof(siginfo_t)); |
211 | if (request == PTRACE_SETSIGINFO) { | 211 | if (request == PTRACE_SETSIGINFO) { |
212 | memset(&ssi, 0, sizeof(siginfo_t)); | 212 | memset(&ssi, 0, sizeof(siginfo_t)); |
213 | ret = copy_siginfo_from_user32(&ssi, si32); | 213 | ret = copy_siginfo_from_user32(&ssi, si32); |