Message ID | 20201105070837.558332-4-laurent@vivier.eu |
---|---|
State | Accepted |
Commit | e4ce178b6153205c2e17a9b719287c83e1e67a72 |
Headers | show |
Series | Linux user for 5.2 patches | expand |
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 6fef8181e738..3160a9ba06bd 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -7592,7 +7592,9 @@ static int do_futex_time64(target_ulong uaddr, int op, int val, target_ulong tim case FUTEX_WAIT_BITSET: if (timeout) { pts = &ts; - target_to_host_timespec64(pts, timeout); + if (target_to_host_timespec64(pts, timeout)) { + return -TARGET_EFAULT; + } } else { pts = NULL; }