소스 검색

Fix crash on windows

Tobias Hieta 8 년 전
부모
커밋
9d444a75f1
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/system/UpdaterComponent.cpp

+ 3 - 2
src/system/UpdaterComponent.cpp

@@ -126,12 +126,13 @@ void UpdaterComponent::dlComplete(QNetworkReply* reply)
     QLOG_ERROR() << "Error downloading:" << reply->url() << "-" << reply->errorString();
     emit downloadError(reply->errorString());
 
-    if (m_hasManifest)
+    if (m_hasManifest && m_manifest)
     {
       m_manifest->abort();
     }
 
-    m_file->abort();
+    if (m_file)
+      m_file->abort();
   }
 }