It seems like syscall wrappers were never taken into account. It usually worked because the argument is simply forwarded to the original syscall, but in some builds the pointer is truncated to an int, generating a read fault when accessed by the original exit syscall as we can see in #15
Fixes #15
It seems like syscall wrappers were never taken into account. It usually worked because the argument is simply forwarded to the original syscall, but in some builds the pointer is truncated to an int, generating a read fault when accessed by the original exit syscall as we can see in #15