fix errors in sigqueue (potential information leak, wrong behavior)
authorRich Felker <dalias@aerifal.cx>
Thu, 10 Mar 2011 23:26:29 +0000 (18:26 -0500)
committerRich Felker <dalias@aerifal.cx>
Thu, 10 Mar 2011 23:26:29 +0000 (18:26 -0500)
commitdc54a7cbb9f0aad6f614131ecc683fbb0b717115
tree10056eb8ebd9c4ae93ac13a0854bcdbc4772ccc4
parent52213f734134055968ef14bf54b71f0dd370763a
fix errors in sigqueue (potential information leak, wrong behavior)

1. any padding in the siginfo struct was not necessarily zero-filled,
so it might have contained private data off the caller's stack.

2. the uid and pid must be filled in from userspace. the previous
rsyscall fix broke rsyscalls because the values were always incorrect.
src/signal/sigqueue.c