diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-18 20:03:20 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-18 20:03:20 +0000 |
commit | 032c5363fbcfe55fc4d32174fcd7ccec40c8bbe8 (patch) | |
tree | f8eba47cb1bf7b46912d212e0bf84b432f134469 /plugins/Dropbox/src/file_transfer.h | |
parent | 9ebf291e927660eac233f0d882c086cfbfa51a63 (diff) |
Dropbox: fixed bugs from coverity
git-svn-id: http://svn.miranda-ng.org/main/trunk@13684 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/file_transfer.h')
-rw-r--r-- | plugins/Dropbox/src/file_transfer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/file_transfer.h b/plugins/Dropbox/src/file_transfer.h index f27ab76695..1a86ec7588 100644 --- a/plugins/Dropbox/src/file_transfer.h +++ b/plugins/Dropbox/src/file_transfer.h @@ -37,13 +37,18 @@ struct FileTransferParam ptszFolders = NULL;
relativePathStart = 0;
+ hProcess = NULL;
+ hContact = NULL;
+
isTerminated = false;
pfts.cbSize = sizeof(this->pfts);
pfts.flags = PFTS_TCHAR | PFTS_SENDING;
+ pfts.hContact = NULL;
pfts.currentFileNumber = 0;
pfts.currentFileProgress = 0;
pfts.currentFileSize = 0;
+ pfts.currentFileTime = 0;
pfts.totalBytes = 0;
pfts.totalFiles = 0;
pfts.totalProgress = 0;
|