diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-25 21:49:36 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-26 18:42:00 +0000 |
commit | 3813a992e4536af1aa9eb966337b3e247dac6812 (patch) | |
tree | e391e4f9cac58bc2ed8b4767adc321d62fc376df | |
parent | Merge pull request #6097 (diff) | |
download | monero-3813a992e4536af1aa9eb966337b3e247dac6812.tar.xz |
download: catch exceptions checking for size
Happens on at least one windows box
-rw-r--r-- | src/common/download.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/common/download.cpp b/src/common/download.cpp index f07d6798d..2b6a3f9d3 100644 --- a/src/common/download.cpp +++ b/src/common/download.cpp @@ -107,13 +107,17 @@ namespace tools MINFO("Content-Length: " << length); content_length = length; boost::filesystem::path path(control->path); - boost::filesystem::space_info si = boost::filesystem::space(path); - if (si.available < (size_t)content_length) + try { - const uint64_t avail = (si.available + 1023) / 1024, needed = (content_length + 1023) / 1024; - MERROR("Not enough space to download " << needed << " kB to " << path << " (" << avail << " kB available)"); - return false; + boost::filesystem::space_info si = boost::filesystem::space(path); + if (si.available < (size_t)content_length) + { + const uint64_t avail = (si.available + 1023) / 1024, needed = (content_length + 1023) / 1024; + MERROR("Not enough space to download " << needed << " kB to " << path << " (" << avail << " kB available)"); + return false; + } } + catch (const std::exception &e) { MWARNING("Failed to check for free space: " << e.what()); } } if (offset > 0) { |