diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-24 12:05:08 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-24 12:05:08 +0000 |
commit | 813bc55a8496875cef52e6da42d608e4d2fa35da (patch) | |
tree | 2414801c5540fdfd8958b5c0f65fb579eff8d8c5 | |
parent | b87565e3441f25be17d35dac86f68661a7ec3bbd (diff) |
Fix memory leak if we send STARTTLS twice, thanks special and psychon
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9800 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/extra/m_ssl_gnutls.cpp | 4 | ||||
-rw-r--r-- | src/testsuite.cpp | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/src/modules/extra/m_ssl_gnutls.cpp b/src/modules/extra/m_ssl_gnutls.cpp index 74aede15d..2e954632e 100644 --- a/src/modules/extra/m_ssl_gnutls.cpp +++ b/src/modules/extra/m_ssl_gnutls.cpp @@ -390,6 +390,10 @@ class ModuleSSLGnuTLS : public Module issl_session* session = &sessions[fd]; + /* For STARTTLS: Don't try and init a session on a socket that already has a session */ + if (session->sess) + return; + session->fd = fd; session->inbuf = new char[inbufsize]; session->inbufoffset = 0; diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 71ace375e..1cee7500c 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -56,7 +56,6 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) cout << "(3) Unload a module\n"; cout << "(4) Threading tests\n"; cout << "(5) Wildcard and CIDR tests\n"; - cout << "(6) irc::string -> std::string dynamic cast\n"; cout << endl << "(X) Exit test suite\n"; @@ -87,14 +86,6 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) case '5': cout << (DoWildTests() ? "\nSUCCESS!\n" : "\nFAILURE\n"); break; - case '6': - { - std::string* a = new std::string("test"); - irc::string* b = (irc::string)a; - cout << "std::string value: '" << *a << "' irc::string value: '" << *b << "'" << endl; - delete a; - } - break; case 'X': return; break; |