https://bugs.kde.org/show_bug.cgi?id=508745
--- Comment #5 from David Edmundson <[email protected]> --- Things we know: - KFileWidget is alive for most of slotOk, otherwise we wouldn't get this far - m_model is dangling - m_model has the same lifespan as KFileWidget ergo KFileWidget is being deleted midway through slotOk. That would be one of these: int res = statJob->exec(); this is obviously bad. Worst case it needs a lazy QPointer guard of 'this' round every invocation. -- You are receiving this mail because: You are watching all bug changes.
