fix invalid access in aio notification
authorRich Felker <dalias@aerifal.cx>
Sun, 16 Jun 2013 14:39:02 +0000 (10:39 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 16 Jun 2013 14:39:02 +0000 (10:39 -0400)
commita494171a5a2778fc7b4d24d673d950f3e9864063
treeb455cb07f90415da4f9307058a1ace8886fcbe9b
parent8600849d74ddd1fca8eba467af5c04c18731ba49
fix invalid access in aio notification

issue found and patch provided by Jens Gustedt. after the atomic store
to the error code field of the aiocb, the application is permitted to
free or reuse the storage, so further access is invalid. instead, use
the local copy that was already made.
src/aio/aio_readwrite.c