Skip to content
Snippets Groups Projects
Commit 34a87c64 authored by fireice-uk's avatar fireice-uk Committed by GitHub
Browse files

Merge pull request #18 from fireice-uk/topic-larger-print-buf

Increase the scratchpad size to make sure we don't malform JSON
parents 9c3a71ef 8ddc1f89
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment