aboutsummaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2020-10-27 02:44:13 +0300
committerlink2xt <link2xt@testrun.org>2020-10-27 02:44:15 +0300
commit47cc6adab11958bcdd50bb24817f9429f1f566bb (patch)
treed3277e2669f91c8892d87eac3965dc7f0ea06a79 /qml
parente84f17304ad0534e161346c22151f23e6577b75a (diff)
downloadkdeltachat-47cc6adab11958bcdd50bb24817f9429f1f566bb.tar.gz
kdeltachat-47cc6adab11958bcdd50bb24817f9429f1f566bb.zip
Fix quitting the application
Event emitter should only be freed when it emits NULL. Previously dc_accounts_event_emitter_unref() was called earlier then needed, causing use-after-free. As a result, the application got stuck waiting for event emitter thread to finish.
Diffstat (limited to 'qml')
-rw-r--r--qml/main.qml1
1 files changed, 0 insertions, 1 deletions
diff --git a/qml/main.qml b/qml/main.qml
index e5b6aee..73abec6 100644
--- a/qml/main.qml
+++ b/qml/main.qml
@@ -53,6 +53,5 @@ Kirigami.ApplicationWindow {
console.log('stopping')
pageStack.pop(null)
delete root.accountsModel
- eventEmitter.stop()
}
}