aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_handler.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-06-11 18:17:11 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-06-11 18:17:11 -0500
commitfd0cf689ddb62c07fa9d86ca6e070860c51669cc (patch)
tree362c57cb3ce3e09ef4565e768e888bbc2e0313dd /src/rpc/daemon_handler.cpp
parentMerge pull request #5618 (diff)
parentminer: fix double free of thread attributes (diff)
downloadmonero-fd0cf689ddb62c07fa9d86ca6e070860c51669cc.tar.xz
Merge pull request #5619
f2f207d miner: fix double free of thread attributes (ston1th)
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);