From fb1709d774139b2173da6ee95770abaad23f726e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 2 Mar 2013 17:00:07 +0300 Subject: Some fixes after coverity checks. --- src/net/download.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/net/download.cpp') diff --git a/src/net/download.cpp b/src/net/download.cpp index 838038f7c..32625b181 100644 --- a/src/net/download.cpp +++ b/src/net/download.cpp @@ -68,6 +68,8 @@ Download::Download(void *ptr, const std::string &url, mError[0] = 0; mOptions.cancel = 0; + mOptions.memoryWrite = 0; + mOptions.checkAdler = true; } Download::~Download() @@ -88,9 +90,16 @@ Download::~Download() */ unsigned long Download::fadler32(FILE *file) { + if (!file) + return 0; + // Obtain file size fseek(file, 0, SEEK_END); long fileSize = ftell(file); + if (fileSize < 0) + { // file size error + return 0; + } rewind(file); // Calculate Adler-32 checksum -- cgit v1.2.3-60-g2f50