fix ppoll with null timeout argument
authorRich Felker <dalias@aerifal.cx>
Mon, 10 Sep 2012 22:05:02 +0000 (18:05 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 10 Sep 2012 22:05:02 +0000 (18:05 -0400)
src/linux/ppoll.c

index 8f4aab9..d49e836 100644 (file)
@@ -4,6 +4,6 @@
 
 int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask)
 {
-       struct timespec tmp = *to;
-       return syscall_cp(SYS_ppoll, fds, n, &tmp, mask);
+       return syscall_cp(SYS_ppoll, fds, n,
+               to ? (struct timespec []){*to} : 0, mask);
 }