https://bugs.kde.org/show_bug.cgi?id=503813
--- Comment #8 from Igor Kushnir <igor...@gmail.com> --- One problem with the git plugin is its synchronous process execution and the accompanying nested event loops. GitPlugin::additionalMenuEntries() calls GitPlugin::hasStashes(), which calls emptyOutput(), which calls KJob::exec(), which runs a git process. You can try inserting the following local variable at the top of additionalMenuEntries(): `QPointer menuGuard(menu);` and check whether it is null after the hasStashes() call. -- You are receiving this mail because: You are watching all bug changes.