فهرست منبع

Initialized member variables of DownloadResult in its ctor.

Tatsuhiro Tsujikawa 14 سال پیش
والد
کامیت
ba9673be1d
1فایلهای تغییر یافته به همراه13 افزوده شده و 1 حذف شده
  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() {}