aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppStun.cpp
diff options
context:
space:
mode:
authorBoris Pek <tehnick-8@yandex.ru>2017-02-03 00:21:59 +0300
committerJeremy Lainé <jeremy.laine@m4x.org>2018-09-18 16:28:02 +0200
commit34b6a758013e3c2cec4f0e180be79a7c94260bc9 (patch)
treeea3d83ce045a9e46e77a3d5f19af23cc404beadc /src/base/QXmppStun.cpp
parentc475518122c4894c1262337750ea22a04f7f9436 (diff)
downloadqxmpp-34b6a758013e3c2cec4f0e180be79a7c94260bc9.tar.gz
Add missed variables initialization in constructors of few classes.
Diffstat (limited to 'src/base/QXmppStun.cpp')
-rw-r--r--src/base/QXmppStun.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/QXmppStun.cpp b/src/base/QXmppStun.cpp
index 86d4004a..f4bd7bb0 100644
--- a/src/base/QXmppStun.cpp
+++ b/src/base/QXmppStun.cpp
@@ -2518,7 +2518,8 @@ public:
};
QXmppIceConnectionPrivate::QXmppIceConnectionPrivate()
- : gatheringState(QXmppIceConnection::NewGatheringState)
+ : connectTimer(NULL)
+ , gatheringState(QXmppIceConnection::NewGatheringState)
, turnPort(0)
{
}