Closed
Bug 684492
Opened 13 years ago
Closed 13 years ago
shutdown crash nsLDAPConnection::~nsLDAPConnection()
Categories
(MailNews Core :: Backend, defect)
Tracking
(thunderbird8 fixed, thunderbird9 fixed)
RESOLVED
FIXED
Thunderbird 10.0
People
(Reporter: wsmwk, Assigned: m_kato)
References
Details
(Keywords: crash, regression)
Crash Data
Attachments
(1 file)
826 bytes,
patch
|
standard8
:
review+
standard8
:
approval-comm-aurora+
|
Details | Diff | Splinter Review |
shutdown crash nsLDAPConnection::~nsLDAPConnection()
only appears in v6, and 6.0.1. #67 crash for v6.0.
I don't see what it would have caused the regression.
no apparent correlations.
spot check of 13 crashes - 3 of 13 have nsX509CertValidity::Release on stack, like ...
bp-2048ebc8-acc1-4e98-8f0d-24a622110901 has reporter rsimpson
EXCEPTION_ACCESS_VIOLATION_READ
0x0
0 xul.dll nsLDAPConnection::~nsLDAPConnection ldap/xpcom/src/nsLDAPConnection.cpp:87
1 xul.dll nsLDAPConnection::`scalar deleting destructor'
2 xul.dll nsLDAPConnection::Release mailnews/base/src/nsMsgStatusFeedback.cpp:83
3 xul.dll nsCOMPtr_base::~nsCOMPtr_base objdir-tb/mozilla/xpcom/build/nsCOMPtr.cpp:81
4 xul.dll nsAbLDAPDirectoryQuery::~nsAbLDAPDirectoryQuery mailnews/addrbook/src/nsAbLDAPDirectoryQuery.cpp:353
5 xul.dll nsAbLDAPDirectoryQuery::`scalar deleting destructor'
6 xul.dll nsXULPrototypeCache::Release content/xul/document/src/nsXULPrototypeCache.cpp:111
7 xul.dll nsCOMPtr_base::~nsCOMPtr_base objdir-tb/mozilla/xpcom/build/nsCOMPtr.cpp:81
8 xul.dll nsAbLDAPDirectory::~nsAbLDAPDirectory mailnews/addrbook/src/nsAbLDAPDirectory.cpp:89
9 xul.dll nsAbLDAPDirectory::`vector deleting destructor'
10 xul.dll nsX509CertValidity::Release js/src/xpconnect/src/xpcstack.cpp:130
11 xul.dll XPCJSRuntime::GCCallback js/src/xpconnect/src/xpcjsruntime.cpp:935
10 of the 13 are like bp-8af7498b-0da9-45d2-972d-ab0d22110902, having nsMsgStatusFeedback::Release on stack
EXCEPTION_ACCESS_VIOLATION_READ
0x0
0 xul.dll nsLDAPConnection::~nsLDAPConnection ldap/xpcom/src/nsLDAPConnection.cpp:87
1 xul.dll nsLDAPConnection::`scalar deleting destructor'
2 xul.dll nsMsgStatusFeedback::Release mailnews/base/src/nsMsgStatusFeedback.cpp:83
3 xul.dll nsCOMPtr_base::~nsCOMPtr_base objdir-tb/mozilla/dist/include/nsAutoPtr.h:969
4 xul.dll nsAbLDAPDirectoryQuery::~nsAbLDAPDirectoryQuery mailnews/addrbook/src/nsAbLDAPDirectoryQuery.cpp:353
5 xul.dll nsAbLDAPDirectoryQuery::`scalar deleting destructor'
6 xul.dll nsPKIParamBlock::Release mailnews/addrbook/src/nsAbLDAPDirectoryQuery.cpp:344
7 xul.dll nsCOMPtr_base::~nsCOMPtr_base objdir-tb/mozilla/dist/include/nsAutoPtr.h:969
8 xul.dll nsAbLDAPDirectory::~nsAbLDAPDirectory mailnews/addrbook/src/nsAbLDAPDirectory.cpp:89
9 xul.dll nsAbLDAPDirectory::`scalar deleting destructor'
10 xul.dll nsDocumentCharsetInfo::Release ldap/xpcom/src/nsLDAPModification.cpp:47
Assignee | ||
Comment 1•13 years ago
|
||
When shutdown, observer service may be already released. We should check whether obsServ is null.
Assignee | ||
Comment 2•13 years ago
|
||
Assignee: nobody → m_kato
Attachment #567376 -
Flags: review?(mbanner)
Comment 4•13 years ago
|
||
Comment on attachment 567376 [details] [diff] [review]
fix
r=Standard8. Please transplant to aurora and beta as well.
Attachment #567376 -
Flags: review?(mbanner)
Attachment #567376 -
Flags: review+
Attachment #567376 -
Flags: approval-comm-beta+
Attachment #567376 -
Flags: approval-comm-aurora+
Comment 5•13 years ago
|
||
Due to the current closed trunk, and the fact we'd like to ship this in a beta for some testing, I've landed this directly on comm-beta:
http://hg.mozilla.org/releases/comm-beta/rev/7d0d937bdd8a
Setting flag appropriately, we'll still need to land on central and aurora.
status-thunderbird8:
--- → fixed
Assignee | ||
Comment 6•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → Thunderbird 10.0
Assignee | ||
Comment 7•13 years ago
|
||
status-thunderbird9:
--- → fixed
Comment 8•13 years ago
|
||
Wow, nsLDAPConnection really likes to violate XPCOM rules:
No passing yourself to other methods in your constructor!
When you're destroyed, it's because nobody has any references to you any more, so it's too late to remove yourself...
Comment 9•13 years ago
|
||
(In reply to neil@parkwaycc.co.uk from comment #8)
> Wow, nsLDAPConnection really likes to violate XPCOM rules:
> No passing yourself to other methods in your constructor!
Err, looks an empty constructor to me: http://hg.mozilla.org/comm-central/file/default/ldap/xpcom/src/nsLDAPConnection.cpp#l72
> When you're destroyed, it's because nobody has any references to you any
> more, so it's too late to remove yourself...
Except nsIObserverService is holding a weak reference, so this is just keeping the list of services clean.
You need to log in
before you can comment on or make changes to this bug.
Description
•