| Summary: | Kontact crashed while using Configure Kmail - Accounts | ||
|---|---|---|---|
| Product: | [Applications] kontact | Reporter: | Zubin Singh Parihar <zparihar> |
| Component: | Assignee: | kdepim bugs <pim-bugs-null> | |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | bbales, comici |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Zubin Singh Parihar
2005-12-10 19:42:39 UTC
*** Bug 124085 has been marked as a duplicate of this bug. *** *** Bug 132025 has been marked as a duplicate of this bug. *** 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:
/**
|