aboutsummaryrefslogtreecommitdiff
path: root/src/AsyncImageLoader.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-10-18 06:48:09 +0200
committerdec05eba <dec05eba@protonmail.com>2020-10-18 06:48:09 +0200
commit7e1a950a0be2871045e0dda6ba2adc892d323464 (patch)
tree90190f3a987ffb1b0fc6d9eaa499766155bb4d32 /src/AsyncImageLoader.cpp
parentfa4897265ae955872b0c2530300a3110e995510e (diff)
Fix potential crash in thumbnail loader
Diffstat (limited to 'src/AsyncImageLoader.cpp')
-rw-r--r--src/AsyncImageLoader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AsyncImageLoader.cpp b/src/AsyncImageLoader.cpp
index bfef294..fb864c2 100644
--- a/src/AsyncImageLoader.cpp
+++ b/src/AsyncImageLoader.cpp
@@ -70,6 +70,12 @@ namespace QuickMedia {
return "";
}
+ // TODO: Remove and use std::thread and detach instead of std::async
+ AsyncImageLoader::~AsyncImageLoader() {
+ if(load_image_future.valid())
+ load_image_future.get();
+ }
+
// TODO: Run in 5 different threads, and add download_to_file(_cache) to reduce memory usage in each (use -O curl option)
bool AsyncImageLoader::load_thumbnail(const std::string &url, bool local, sf::Vector2i resize_target_size, bool use_tor, std::shared_ptr<ThumbnailData> thumbnail_data) {
update();