_exit() instead of exit() after failed exec
authorFRIGN <dev@frign.de>
Thu, 11 Aug 2016 19:20:07 +0000 (21:20 +0200)
committerMarkus Teich <markus.teich@stusta.mhn.de>
Thu, 11 Aug 2016 21:42:09 +0000 (23:42 +0200)
commite8914d5d4bedb12bccf78a930b34b1564b3dbaac
tree3de69ec293421110ae48f0b0a9f1cf1e6ae825e0
parentcd10166b5eccac1b8cf510a7c97544d1697fbd09
_exit() instead of exit() after failed exec

die() calls exit(), but actually at this point the program could be in a
state not allowing this. It's better to call _exit to stop the libc from
calling any handlers that might fail at this moment anyway.
sent.c