mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 00:15:11 -04:00
call _exit instead of abort in release mode
Avoids cores being created, as they're nowadays often piped to some call home system
This commit is contained in:
parent
09d19c9139
commit
851bd057ec
6 changed files with 49 additions and 7 deletions
|
@ -31,6 +31,7 @@
|
|||
#define __STDC_WANT_LIB_EXT1__ 1
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_EXPLICIT_BZERO
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
@ -50,7 +51,12 @@ void *memwipe(void *ptr, size_t n)
|
|||
{
|
||||
if (memset_s(ptr, n, 0, n))
|
||||
{
|
||||
#ifdef NDEBUG
|
||||
fprintf(stderr, "Error: memset_s failed\n");
|
||||
_exit(1);
|
||||
#else
|
||||
abort();
|
||||
#endif
|
||||
}
|
||||
SCARECROW // might as well...
|
||||
return ptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue