From: Rich Felker Date: Sun, 16 Jun 2013 14:39:02 +0000 (-0400) Subject: fix invalid access in aio notification X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=a494171a5a2778fc7b4d24d673d950f3e9864063;hp=a494171a5a2778fc7b4d24d673d950f3e9864063;ds=sidebyside 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. ---