mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
dde82a6ba4
commit
f09a3c3304
1 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,9 @@
|
|||
#include "checkcloudconnection.h"
|
||||
|
||||
|
||||
CheckCloudConnection::CheckCloudConnection(QObject *parent) : QObject(parent)
|
||||
CheckCloudConnection::CheckCloudConnection(QObject *parent) :
|
||||
QObject(parent),
|
||||
reply(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue