Fix unitialized scalar field bugs

This commit is contained in:
Vladimir Golovnev (Glassez) 2016-01-15 09:44:10 +03:00
parent 9bdd26de43
commit ea8acf3bbd
3 changed files with 5 additions and 1 deletions

View file

@ -96,6 +96,7 @@ Smtp::Smtp(QObject *parent)
: QObject(parent)
, m_state(Init)
, m_useSsl(false)
, m_authType(AuthPlain)
{
#ifndef QT_NO_OPENSSL
m_socket = new QSslSocket(this);