From: Dmitry V. Levin Date: Mon, 1 Jun 2009 18:45:41 +0000 (+0000) Subject: * strace.c (handle_stopped_tcbs): Fix cast for 4th argument passed to ptrace(). X-Git-Tag: v4.5.19~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ac9d627f4b8d2022958668e5c2f3b784605cb16;p=strace * strace.c (handle_stopped_tcbs): Fix cast for 4th argument passed to ptrace(). --- diff --git a/ChangeLog b/ChangeLog index e0b10904..cea9670e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-06-01 Dmitry V. Levin + * strace.c (handle_stopped_tcbs): Fix cast for 4th argument + passed to ptrace(). + * bjm.c (sys_query_module): Fix format warning reported by gcc -Wformat-security. * file.c (tprint_open_modes): Likewise. diff --git a/strace.c b/strace.c index a2bbb670..d351dc5e 100644 --- a/strace.c +++ b/strace.c @@ -2602,7 +2602,7 @@ handle_stopped_tcbs(struct tcb *tcp) * Old kernels are known to lie here. */ if (ptrace(PTRACE_SETOPTIONS, pid, (char *) 0, - (void *) (PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC)) == 0) + (long) (PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC)) == 0) ptrace_stop_sig = SIGTRAP | 0x80; } #endif @@ -2629,7 +2629,7 @@ handle_stopped_tcbs(struct tcb *tcp) /* Take a better look... */ siginfo_t si; si.si_signo = 0; - ptrace(PTRACE_GETSIGINFO, pid, (void*) 0, (void*) &si); + ptrace(PTRACE_GETSIGINFO, pid, (void*) 0, (long) &si); /* * Check some fields to make sure we see * real SIGTRAP.