summaryrefslogtreecommitdiff
path: root/filecache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filecache.cpp')
-rw-r--r--filecache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/filecache.cpp b/filecache.cpp
index 9e4b0b4..c715260 100644
--- a/filecache.cpp
+++ b/filecache.cpp
@@ -66,7 +66,7 @@ std::string Cache::GetPathIfCached(std::string url) {
// this just seems really yucky
void Cache::CleanupFutures() {
for (auto it = m_futures.begin(); it != m_futures.end();) {
- if (it->wait_for(std::chrono::seconds(0)) == std::future_status::ready)
+ if (it->valid() && it->wait_for(std::chrono::seconds(0)) == std::future_status::ready)
it = m_futures.erase(it);
else
it++;