Changed: Minor changes

--HG--
branch : develop
feature/pipeline-tools
kervala 9 years ago
parent 8fb8cfb218
commit 8099537d02

@ -2938,7 +2938,8 @@ string checkLogin(const string &login, const string &password, const string &cli
// ***************************************************************************
string selectShard(uint32 shardId, string &cookie, string &addr)
{
cookie = addr = "";
cookie.clear();
addr.clear();
if(!HttpClient.connectToLogin()) return "Can't connect (error code 7)";

@ -152,7 +152,7 @@ bool CHttpClient::receive(string &res, bool verbose)
nlassert(_Sock.connected());
uint32 size;
res = "";
res.clear();
uint8 buf[1024];

Loading…
Cancel
Save