Le 02/07/2018 à 19:50, Philippe Mathieu-Daudé a écrit : > Suggested-by: Laurent Vivier <laur...@vivier.eu> > Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> > --- > linux-user/strace.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/linux-user/strace.c b/linux-user/strace.c > index bd897a3f20..311e63ef75 100644 > --- a/linux-user/strace.c > +++ b/linux-user/strace.c > @@ -1173,8 +1173,10 @@ print_timeval(abi_ulong tv_addr, int last) > struct target_timeval *tv; > > tv = lock_user(VERIFY_READ, tv_addr, sizeof(*tv), 1); > - if (!tv) > + if (!tv) { > + print_pointer(tv, last);
tv is NULL here. we want to print the value of tv_addr. Thanks, Laurent