1
0

Initialise m_Callbacks field to NULL in empty constructor.

This commit is contained in:
worktycho 2014-06-04 10:58:09 +01:00
parent b79142c8e7
commit 87c4d0ea57

View File

@ -11,7 +11,8 @@
cCallbackSslContext::cCallbackSslContext(void)
cCallbackSslContext::cCallbackSslContext(void) :
m_Callbacks(NULL)
{
// Nothing needed, but the constructor needs to exist so
}