Explorar o código

Initialized member variables of DownloadResult in its ctor.

Tatsuhiro Tsujikawa %!s(int64=14) %!d(string=hai) anos
pai
achega
ba9673be1d
Modificáronse 1 ficheiros con 13 adicións e 1 borrados
  1. 13 1
      src/DownloadResult.cc

+ 13 - 1
src/DownloadResult.cc

@@ -39,7 +39,19 @@
 
 namespace aria2 {
 
-DownloadResult::DownloadResult() {}
+DownloadResult::DownloadResult()
+  : gid(0),
+    inMemoryDownload(false),
+    sessionDownloadLength(0),
+    sessionTime(0),
+    result(error_code::UNDEFINED),
+    belongsTo(0),
+    totalLength(0),
+    completedLength(0),
+    uploadLength(0),
+    pieceLength(0),
+    numPieces(0)
+{}
 
 DownloadResult::~DownloadResult() {}