Closed
Bug 224781
Opened 21 years ago
Closed 21 years ago
Mozilla Firebird 1104 nightly crashes on Entrust Certificate Admin site
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 225423
People
(Reporter: wgianopoulos, Assigned: bugzilla)
References
()
Details
(Keywords: crash, regression)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031104 Firebird/0.7+
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031104 Firebird/0.7+
The win32 MozillaFirebird 1104 nightly crashes when you login to the Entrust
Certificate Adminitrator website. The 1103 nightly does not. The build does
not have talkback so here is what I could manage to get out of the Windows error
reporting thing.
The instruction at "0x008aa5b" referenced memory at "0x00000016". The memory
could not be read.
I have not been able to reproduce this at a non-password protected site though.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1•21 years ago
|
||
what happens with a Mozilla Suite nightly? The security backend is the same,
so it could be related to a checkin there.
Reporter | ||
Comment 2•21 years ago
|
||
Well the last win32 nightly I can find is dated 10/28 so this is kind of hard to
check. I am also not sure this has anything to do with the security backend.
The site also uses JAVA applets and had a complicated frame layout. So it could
be JAVA plug-in related, security backend or just a layout issue.
> So it could be JAVA plug-in related, security backend or just a layout issue.
none of which are unique to firebird as far as I know. this should most likely
be moved to browser.
Reporter | ||
Comment 4•21 years ago
|
||
Well trhat IS most likely the case, but I think we need to leave it as a
firebird bug untill we can somehow verify that it happens with the mozilla
suite. I will look for an unoffical recent nightly to test this with.
Reporter | ||
Comment 5•21 years ago
|
||
OK I verified using an unofficial 10/05 suite build that this crashes in the
suite as well. Changing this to a browser bug.
Component: General → Browser-General
Product: Firebird → Browser
Version: unspecified → Trunk
Reporter | ||
Comment 6•21 years ago
|
||
Re comment #5, that should have read 11/05 NOT 10/05. :-(
Reporter | ||
Comment 7•21 years ago
|
||
Could this have to do with the fix for Bug#: 212563? Just looking for likely
things on checkins between 1103 and 1104.
Reporter | ||
Comment 8•21 years ago
|
||
Re; comment #7,
Shouldn't the code added by the patch:
// Let our window know that we are gone
nsCOMPtr<nsIDOMWindow> win(do_GetInterface(mDocShell));
nsCOMPtr<nsPIDOMWindow> win_private(do_QueryInterface(win));
if (win_private) {
win_private->SetFrameElementInternal(nsnull);
}
be:
// Let our window know that we are gone
nsCOMPtr<nsIDOMWindow> win(do_GetInterface(mDocShell));
if (win) {
nsCOMPtr<nsPIDOMWindow> win_private(do_QueryInterface(win));
if (win_private) {
win_private->SetFrameElementInternal(nsnull);
}
}
or is that check not necessary?
Updated•21 years ago
|
Keywords: crash,
regression
Reporter | ||
Comment 9•21 years ago
|
||
Duping to 225423 even though this bug was filed earlier because that bug has a
better description of the problem.
*** This bug has been marked as a duplicate of 225423 ***
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → DUPLICATE
Comment 10•21 years ago
|
||
wfm Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6b) Gecko/20031125
Tinderbox BuildID 2003112523, after bug 225423 was fixed
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•