summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2014-06-04 11:58:09 +0200
committerworktycho <work.tycho@gmail.com>2014-06-04 11:58:09 +0200
commit87c4d0ea576d6a3e8ec78329ff510291ccf0e674 (patch)
tree071e77e046aad093c16d04fc6751de0e6910d89a
parentFixed buffer overflow in JSON. (diff)
downloadcuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar.gz
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar.bz2
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar.lz
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar.xz
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.tar.zst
cuberite-87c4d0ea576d6a3e8ec78329ff510291ccf0e674.zip
-rw-r--r--src/PolarSSL++/CallbackSslContext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/PolarSSL++/CallbackSslContext.cpp b/src/PolarSSL++/CallbackSslContext.cpp
index 0cc88a14a..c4d19b2a0 100644
--- a/src/PolarSSL++/CallbackSslContext.cpp
+++ b/src/PolarSSL++/CallbackSslContext.cpp
@@ -11,7 +11,8 @@
-cCallbackSslContext::cCallbackSslContext(void)
+cCallbackSslContext::cCallbackSslContext(void) :
+ m_Callbacks(NULL)
{
// Nothing needed, but the constructor needs to exist so
}