From 8ddc1f8974d03b4b275e1e3821916e380e21f774 Mon Sep 17 00:00:00 2001 From: fireice-uk Date: Thu, 5 Oct 2017 14:45:40 +0100 Subject: Increase the scratchpad size to make sure we don't malform JSON api replies with TLS --- xmrstak/misc/executor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmrstak/misc/executor.cpp') diff --git a/xmrstak/misc/executor.cpp b/xmrstak/misc/executor.cpp index f2bdad4..ec9ac12 100644 --- a/xmrstak/misc/executor.cpp +++ b/xmrstak/misc/executor.cpp @@ -911,8 +911,8 @@ void executor::http_json_report(std::string& out) if(iPoolCallTimes.size() > 0) fAvgResTime = double(iConnSec) / iPoolCallTimes.size(); + char buffer[2048]; res_error.reserve((vMineResults.size() - 1) * 128); - char buffer[256]; for(size_t i=1; i < vMineResults.size(); i++) { using namespace std::chrono; @@ -933,7 +933,7 @@ void executor::http_json_report(std::string& out) iPoolPing = iPoolCallTimes[n_calls/2]; } - cn_error.reserve(vSocketLog.size() * 128); + cn_error.reserve(vSocketLog.size() * 256); for(size_t i=0; i < vSocketLog.size(); i++) { using namespace std::chrono; -- cgit v1.1