Summary: | Crash relating to progress indication, possibly to do with IMAP | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Craig Bradney <cbradney> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | 1.9 | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Craig Bradney
2005-12-02 00:26:16 UTC
SVN commit 585670 by kling: Use a QGuardedPtr for the KPIM::ProgressItem in KMAccount. Fixes a bazillion crashes when dereferencing deleted items. BUG: 105701 BUG: 114953 BUG: 114197 BUG: 117475 BUG: 118083 BUG: 128131 BUG: 129007 BUG: 133023 BUG: 133745 M +1 -1 kmaccount.h --- branches/KDE/3.5/kdepim/kmail/kmaccount.h #585669:585670 @@ -309,7 +309,7 @@ QValueList<KMMessage*> mReceipts; QPtrList<FolderJob> mJobList; bool mHasInbox : 1; - ProgressItem *mMailCheckProgressItem; + QGuardedPtr<ProgressItem> mMailCheckProgressItem; private: /** |