X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Flinux%2Fppoll.c;fp=src%2Flinux%2Fppoll.c;h=d49e836e4e84fcb3a2220fc62245e1a310c52c67;hb=3b5e69052a867e9d99cf4c655d775bd06e3437f1;hp=8f4aab9b272a8c3740ebd32bdb233553cb55aa18;hpb=2c1cd2399a237db968a521cdaef3d47a3fb2c2e9;p=musl diff --git a/src/linux/ppoll.c b/src/linux/ppoll.c index 8f4aab9b..d49e836e 100644 --- a/src/linux/ppoll.c +++ b/src/linux/ppoll.c @@ -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); }