[Pkg-owncloud-commits] [owncloud-client] 49/70: syncengine: properly initialize all members in ctor
Sandro Knauß
hefee-guest at moszumanska.debian.org
Tue Jul 1 10:21:22 UTC 2014
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit bbf8b9f8dd391ff6e4645485b544f19216bb0885
Author: Daniel Molkentin <danimo at owncloud.com>
Date: Fri Jun 20 13:25:39 2014 +0200
syncengine: properly initialize all members in ctor
This fixes Coverity CID 12922
---
src/mirall/syncengine.cpp | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/mirall/syncengine.cpp b/src/mirall/syncengine.cpp
index eacfd08..fdb6b5c 100644
--- a/src/mirall/syncengine.cpp
+++ b/src/mirall/syncengine.cpp
@@ -55,12 +55,17 @@ void csyncLogCatcher(int /*verbosity*/,
bool SyncEngine::_syncRunning = false;
SyncEngine::SyncEngine(CSYNC *ctx, const QString& localPath, const QString& remoteURL, const QString& remotePath, Mirall::SyncJournalDb* journal)
+ : _csync_ctx(ctx)
+ , _needsUpdate(false)
+ , _localPath(localPath)
+ , _remoteUrl(remoteURL)
+ , _remotePath(remotePath)
+ , _journal(journal)
+ , _hasFiles(false)
+ , _downloadLimit(0)
+ , _uploadLimit(0)
+
{
- _localPath = localPath;
- _remotePath = remotePath;
- _remoteUrl = remoteURL;
- _csync_ctx = ctx;
- _journal = journal;
qRegisterMetaType<SyncFileItem>("SyncFileItem");
qRegisterMetaType<SyncFileItem::Status>("SyncFileItem::Status");
qRegisterMetaType<Progress::Info>("Progress::Info");
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list