diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-03 13:45:53 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-04 11:01:18 (GMT) |
commit | d839acb05635673c9f9d26f1b7b7a4c31440565e (patch) | |
tree | 824c14937df8d31e607e0bacf3ffc3d2aac63033 /src/network | |
parent | bd70e85af0b27632b54bd63e078fa35648a34dee (diff) | |
download | Qt-d839acb05635673c9f9d26f1b7b7a4c31440565e.zip Qt-d839acb05635673c9f9d26f1b7b7a4c31440565e.tar.gz Qt-d839acb05635673c9f9d26f1b7b7a4c31440565e.tar.bz2 |
QHostInfoPrivate: Uninitialized int
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/kernel/qhostinfo_p.h | 5 |
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) { } |