summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2015-05-23 00:54:32 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2015-05-23 00:54:32 +0200
commit8f6788b2efc562559ed2f9b63c6f49c622887e67 (patch)
tree06bd67ac1d1069c36682514715643aab11424d6d
parentMerge pull request #2086 from Seadragon91/master (diff)
downloadcuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar.gz
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar.bz2
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar.lz
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar.xz
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.tar.zst
cuberite-8f6788b2efc562559ed2f9b63c6f49c622887e67.zip
-rw-r--r--src/PolarSSL++/BlockingSslClientSocket.h5
-rw-r--r--src/Protocol/MojangAPI.cpp1
2 files changed, 5 insertions, 1 deletions
diff --git a/src/PolarSSL++/BlockingSslClientSocket.h b/src/PolarSSL++/BlockingSslClientSocket.h
index 319e82bf2..462ee95a7 100644
--- a/src/PolarSSL++/BlockingSslClientSocket.h
+++ b/src/PolarSSL++/BlockingSslClientSocket.h
@@ -21,6 +21,11 @@ class cBlockingSslClientSocket :
{
public:
cBlockingSslClientSocket(void);
+
+ ~cBlockingSslClientSocket(void)
+ {
+ Disconnect();
+ }
/** Connects to the specified server and performs SSL handshake.
Returns true if successful, false on failure. Sets internal error text on failure. */
diff --git a/src/Protocol/MojangAPI.cpp b/src/Protocol/MojangAPI.cpp
index a12351286..110590359 100644
--- a/src/Protocol/MojangAPI.cpp
+++ b/src/Protocol/MojangAPI.cpp
@@ -459,7 +459,6 @@ bool cMojangAPI::SecureRequest(const AString & a_ServerName, const AString & a_R
a_Response.append((const char *)buf, (size_t)ret);
}
- Socket.Disconnect();
return true;
}