Closed
Bug 5925
Opened 25 years ago
Closed 25 years ago
Crash: http://www.elpais.es crashes
Categories
(Core :: Internationalization, defect, P3)
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: msanz, Assigned: harishd)
References
()
Details
Visit http://www.elpais.es
Talkback ID8115055
Source for the page can be found at
http://rocknroll/users/msanz/publish/pais.txt
because the page changes daily
Updated•25 years ago
|
Assignee: don → ftang
Severity: major → critical
Component: Apprunner → Internationalization
QA Contact: 3853 → 3851
Target Milestone: M6
Updated•25 years ago
|
Status: NEW → ASSIGNED
Updated•25 years ago
|
Assignee: ftang → kipp
Status: ASSIGNED → NEW
Comment 2•25 years ago
|
||
In my local build it crash when
Stack trace:
SinkContext::Begin(nsHTMLTag, nsIHTMLContent * 0xcdcdcdcd) line 855 + 3 bytes
HTMLContentSink::BeginContext(HTMLContentSink * const 0x031c79c0, int
0x00000013) line 1547
CNavDTD::HandleSavedTokensAbove(nsHTMLTag eHTMLTag_table) line 1453
CNavDTD::HandleEndToken(CToken * 0x00e40f50) line 1406 + 12 bytes
NavDispatchTokenHandler(CToken * 0x00e40f50, nsIDTD * 0x00f6c610) line 250 + 12
bytes
CTokenHandler::operator()(CToken * 0x00e40f50, nsIDTD * 0x00f6c610) line 80 + 14
bytes
CNavDTD::HandleToken(CNavDTD * const 0x00f6c610, CToken * 0x00e40f50, nsIParser
* 0x031c7860) line 635 + 18 bytes
CNavDTD::BuildModel(CNavDTD * const 0x00f6c610, nsIParser * 0x031c7860,
nsITokenizer * 0x00f6d640, nsITokenObserver * 0x00000000, nsIContentSink *
0x031c79c0) line 509 + 20 bytes
nsParser::BuildModel() line 847 + 34 bytes
nsParser::ResumeParse(nsIDTD * 0x00000000) line 799 + 11 bytes
nsParser::OnDataAvailable(nsParser * const 0x031c7864, nsIURL * 0x031bdb50,
nsIInputStream * 0x031c6e50, unsigned int 0x00000a24) line 1011 + 17 bytes
nsDocumentBindInfo::OnDataAvailable(nsDocumentBindInfo * const 0x031bd150,
nsIURL * 0x031bdb50, nsIInputStream * 0x031c6e50, unsigned int 0x00000a24) line
2102 + 24 bytes
OnDataAvailableProxyEvent::HandleEvent(OnDataAvailableProxyEvent * const
0x031dbda0) line 632
StreamListenerProxyEvent::HandlePLEvent(PLEvent * 0x031dbda4) line 471 + 12
bytes
PL_HandleEvent(PLEvent * 0x031dbda4) line 476 + 10 bytes
PL_ProcessPendingEvents(PLEventQueue * 0x00c209a0) line 437 + 9 bytes
_md_EventReceiverProc(void * 0x000208ec, unsigned int 0x0000c117, unsigned int
0x00000000, long 0x00c209a0) line 799 + 9 bytes
USER32! 77e5111a()
When it crash
nsresult
SinkContext::Begin(nsHTMLTag aNodeType, nsIHTMLContent* aRoot)
{
if (1 > mStackSize) {
nsresult rv = GrowStack();
if (NS_OK != rv) {
return rv;
}
}
mStack[0].mType = aNodeType;
mStack[0].mContent = aRoot;
mStack[0].mFlags = APPENDED;
It crash at the NS_ADDREF(aRoot); line below while aRoot == 0xcdcdcdcd
nsresult
SinkContext::Begin(nsHTMLTag aNodeType, nsIHTMLContent* aRoot)
{
if (1 > mStackSize) {
nsresult rv = GrowStack();
if (NS_OK != rv) {
return rv;
}
}
mStack[0].mType = aNodeType;
mStack[0].mContent = aRoot;
mStack[0].mFlags = APPENDED;
NS_ADDREF(aRoot);
mStackPos = 1;
mTextLength = 0;
return NS_OK;
}
mStackPos = 1;
mTextLength = 0;
return NS_OK;
}
Reassign to kipp since he is the last one touch that line.
Summary: CRASH: http://www.elpais.es crashes → Crash: http://www.elpais.es crashes
URL: http://www.elpais.es
Status: NEW → ASSIGNED
Marking the bug fixed.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•