| Summary: | KMail crashed while writing a mail | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | Oliver Zimmermann <o-z> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | hpoley, sven.burmeister, vizion |
| Priority: | NOR | ||
| Version First Reported In: | 1.8 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Oliver Zimmermann
2005-05-15 12:38:31 UTC
*** Bug 105702 has been marked as a duplicate of this bug. *** We either need a way to reproduce this or a backtrace from a kmail compiled with --enable-debug=full. Otherwise there is nothing we can do, sorry. *** Bug 105703 has been marked as a duplicate of this bug. *** *** Bug 106435 has been marked as a duplicate of this bug. *** *** Bug 97144 has been marked as a duplicate of this bug. *** *** Bug 116526 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:
/**
|