| Summary: | KMail Composer crashed between accepting GnuPG passphrase and prompting for PoP/SMTP password | ||
|---|---|---|---|
| Product: | [Applications] kontact | Reporter: | Bruce Miller <bugs> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian stable | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Bruce Miller
2005-10-10 23:27:13 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:
/**
|