Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorADD-SP <add_sp@outlook.com>2021-11-05 07:57:16 +0300
committerJonathan White <support@dmapps.us>2021-11-14 07:18:47 +0300
commite5065a01c8c6a966fa045c3d2e6f41495395414d (patch)
tree6d6e333e65ecabc022cd27778da4762872cfc311 /src/gui
parentc37e2d3d69def753e5b127249b77783cc07bb135 (diff)
Fix crash while downloading favicons
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/IconDownloaderDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/IconDownloaderDialog.cpp b/src/gui/IconDownloaderDialog.cpp
index 271a916f3..ffb849bb8 100644
--- a/src/gui/IconDownloaderDialog.cpp
+++ b/src/gui/IconDownloaderDialog.cpp
@@ -191,7 +191,7 @@ void IconDownloaderDialog::updateTable(const QString& url, const QString& messag
void IconDownloaderDialog::abortDownloads()
{
for (auto* downloader : m_activeDownloaders) {
- delete downloader;
+ downloader->deleteLater();
}
m_activeDownloaders.clear();
updateProgressBar();