From: Rich Felker Date: Sat, 2 May 2015 01:22:27 +0000 (-0400) Subject: fix dangling pointers in x32 syscall timespec fixup code X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=4f69594689992d76088f2b0af79cd91c40579f64;hp=4f69594689992d76088f2b0af79cd91c40579f64;p=musl fix dangling pointers in x32 syscall timespec fixup code the lifetime of compound literals is the block in which they appear. the temporary struct __timespec_kernel objects created as compound literals no longer existed at the time their addresses were passed to the kernel. ---