diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-07-15 13:20:36 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-12 16:28:10 +0000 |
commit | 43074891479b4883645b06c4cc5341469d9cd9cd (patch) | |
tree | 64ef46421d272b30585c560fbe9807187319363f /src/wallet/api/utils.cpp | |
parent | Merge pull request #4094 (diff) | |
download | monero-43074891479b4883645b06c4cc5341469d9cd9cd.tar.xz |
wallet: disable core dumps on startup in release mode
Diffstat (limited to 'src/wallet/api/utils.cpp')
-rw-r--r-- | src/wallet/api/utils.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/api/utils.cpp b/src/wallet/api/utils.cpp index aebe41e59..86fe56564 100644 --- a/src/wallet/api/utils.cpp +++ b/src/wallet/api/utils.cpp @@ -51,6 +51,9 @@ bool isAddressLocal(const std::string &address) void onStartup() { tools::on_startup(); +#ifdef NDEBUG + tools::disable_core_dumps(); +#endif } } |