summaryrefslogtreecommitdiff
path: root/src/socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket.cpp')
-rw-r--r--src/socket.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/socket.cpp b/src/socket.cpp
index fe6516bb5..1db915e4a 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -259,19 +259,20 @@ int InspSocket::Write(std::string data)
void InspSocket::FlushWriteBuffer()
{
int result = 0;
- if (this->Buffer.length())
+ const char* n = this->Buffer.c_str();
+ int v = this->Buffer.length();
+ if (v > 0)
{
- result = send(this->fd,this->Buffer.c_str(),this->Buffer.length(),0);
+ result = send(this->fd,n,v,0);
if (result > 0)
{
- if (result == (int)this->Buffer.length())
+ if (result == v)
{
this->Buffer = "";
}
else
{
/* If we wrote some, advance the buffer forwards */
- char* n = (char*)this->Buffer.c_str();
n += result;
this->Buffer = n;
}