Closed
Bug 5239
Opened 26 years ago
Closed 26 years ago
SEGV in libraptor.html
Categories
(Core :: DOM: HTML Parser, defect, P3)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: jim_nance, Assigned: harishd)
References
()
Details
Using a Apr 17 cvs pull, I get a reproducable SIGSEGV in apprunner when
trying to view www.redhat.com. I traced it in the debugger to a
stack underflow in the code shown below:
(gdb) w
#0 0x40518794 in SinkContext::CloseContainer (this=0x83ad070,
aNode=@0xbfffe3b8)
at
../../../../../mozilla/layout/html/document/src/nsHTMLContentSink.cpp:1043
1040
1041 --mStackPos;
1042 nsHTMLTag nodeType = mStack[mStackPos].mType;
1043 nsIHTMLContent* content = mStack[mStackPos].mContent;
1044 > content->Compact();
1045
1046 // Add container to its parent if we haven't already done it
1047 if (0 == (mStack[mStackPos].mFlags & APPENDED)) {
(gdb) p content
$1 = (nsIHTMLContent *) 0x54002f
(gdb) p *content
Cannot access memory at address 0x54002f.
(gdb) p mStackPos
$2 = -1
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
I'm able to view the URL, in May03 build, wihout any problems.
Marking the bug WORKSFORME.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 5•26 years ago
|
||
In the June 2 Build, redhat.com loads on Linux without crash problems as
described.
You need to log in
before you can comment on or make changes to this bug.
Description
•