aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_handler.cpp
diff options
context:
space:
mode:
authorston1th <ston1th@users.noreply.github.com>2019-06-09 10:51:18 +0200
committerston1th <ston1th@users.noreply.github.com>2019-06-09 10:51:18 +0200
commitf2f207d63578735c875472cf56ad4dee787ba110 (patch)
tree0618e825b8ad4cb89f04195f46086b756bf0eb18 /src/rpc/daemon_handler.cpp
parentMerge pull request #5583 (diff)
downloadmonero-f2f207d63578735c875472cf56ad4dee787ba110.tar.xz
miner: fix double free of thread attributes
issue: #5568
Diffstat (limited to '')
-rw-r--r--src/rpc/daemon_handler.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rpc/daemon_handler.cpp b/src/rpc/daemon_handler.cpp
index 5c214581c..612b2cab6 100644
--- a/src/rpc/daemon_handler.cpp
+++ b/src/rpc/daemon_handler.cpp
@@ -408,10 +408,7 @@ namespace rpc
return;
}
- boost::thread::attributes attrs;
- attrs.set_stack_size(THREAD_STACK_SIZE);
-
- if(!m_core.get_miner().start(info.address, static_cast<size_t>(req.threads_count), attrs, req.do_background_mining, req.ignore_battery))
+ if(!m_core.get_miner().start(info.address, static_cast<size_t>(req.threads_count), req.do_background_mining, req.ignore_battery))
{
res.error_details = "Failed, mining not started";
LOG_PRINT_L0(res.error_details);