aboutsummaryrefslogtreecommitdiffstats
path: root/fbench
diff options
context:
space:
mode:
authorohad serfaty <ohad@verizonemedia.com>2019-11-21 17:13:12 +0200
committerohad serfaty <ohad@verizonemedia.com>2019-11-21 17:13:12 +0200
commit217f78af8627ff76ce37b68ef4e986e6539a6eec (patch)
tree9f0b1a6b9529e7cf737b007e9626ed6b47f4e085 /fbench
parent809d7aa7fa5ec828028200182a2ea93c509cedbf (diff)
compilation fix
Diffstat (limited to 'fbench')
-rw-r--r--fbench/src/fbench/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fbench/src/fbench/client.cpp b/fbench/src/fbench/client.cpp
index 736715efa82..297cf61bdb3 100644
--- a/fbench/src/fbench/client.cpp
+++ b/fbench/src/fbench/client.cpp
@@ -273,7 +273,7 @@ Client::run()
auto base64_content = std::string(urlSource.content(), cLen);
auto decoded = base64_decode(base64_content);
content = decoded.c_str();
- cLen = content.size();
+ cLen = decoded.size();
}
_reqTimer->Start();