Avoid potentially uninitialized member

This seems a false positive, reply is always set before it is used, but
there's no harm in setting it explicitly.

Coverity CID 1325280

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-10-02 15:25:03 -04:00
parent dde82a6ba4
commit f09a3c3304

View file

@ -10,7 +10,9 @@
#include "checkcloudconnection.h"
CheckCloudConnection::CheckCloudConnection(QObject *parent) : QObject(parent)
CheckCloudConnection::CheckCloudConnection(QObject *parent) :
QObject(parent),
reply(0)
{
}