summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qhostinfo_p.h
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2009-09-03 13:45:53 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2009-09-04 11:01:18 (GMT)
commitd839acb05635673c9f9d26f1b7b7a4c31440565e (patch)
tree824c14937df8d31e607e0bacf3ffc3d2aac63033 /src/network/kernel/qhostinfo_p.h
parentbd70e85af0b27632b54bd63e078fa35648a34dee (diff)
downloadQt-d839acb05635673c9f9d26f1b7b7a4c31440565e.zip
Qt-d839acb05635673c9f9d26f1b7b7a4c31440565e.tar.gz
Qt-d839acb05635673c9f9d26f1b7b7a4c31440565e.tar.bz2
QHostInfoPrivate: Uninitialized int
Diffstat (limited to 'src/network/kernel/qhostinfo_p.h')
-rw-r--r--src/network/kernel/qhostinfo_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/network/kernel/qhostinfo_p.h b/src/network/kernel/qhostinfo_p.h
index 000de07..ee741aa 100644
--- a/src/network/kernel/qhostinfo_p.h
+++ b/src/network/kernel/qhostinfo_p.h
@@ -47,7 +47,7 @@
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
-// of the QLibrary class. This header file may change from
+// of the QHostInfo class. This header file may change from
// version to version without notice, or even be removed.
//
// We mean it.
@@ -180,7 +180,8 @@ class QHostInfoPrivate
public:
inline QHostInfoPrivate()
: err(QHostInfo::NoError),
- errorStr(QLatin1String(QT_TRANSLATE_NOOP("QHostInfo", "Unknown error")))
+ errorStr(QLatin1String(QT_TRANSLATE_NOOP("QHostInfo", "Unknown error"))),
+ lookupId(0)
{
}