Closed
Bug 208979
Opened 22 years ago
Closed 22 years ago
txStylesheet::init ENSUREs on wrong variable
Categories
(Core :: XSLT, defect)
Core
XSLT
Tracking
()
RESOLVED
FIXED
People
(Reporter: sicking, Assigned: peterv)
Details
Attachments
(1 file)
4.54 KB,
patch
|
sicking
:
review+
jst
:
superreview+
|
Details | Diff | Splinter Review |
Jag pointed out a bug in txStylesheet::init
http://lxr.mozilla.org/seamonkey/source/extensions/transformiix/source/xslt/txStylesheet.cpp#107
should use mCharactersTemplate, not mContainerTemplate.
And we should look into using something neater then the current |instrp =
&(*instrp)->mNext| syntax.
a = new A
NS_ENSURE_TRUE(a, ...)
b = new B
NS_ENSURE_TRUE(b, ...)
a->mNext = b;
c = new C
NS_ENSURE_TRUE(c, ...)
b->mNext = c
Though that makes it less clear that a linked list is being built
Assignee | ||
Comment 1•22 years ago
|
||
Assignee | ||
Updated•22 years ago
|
Attachment #125357 -
Flags: review?(bugmail)
Reporter | ||
Updated•22 years ago
|
Attachment #125357 -
Flags: review?(bugmail) → review+
Assignee | ||
Updated•22 years ago
|
Attachment #125357 -
Flags: superreview?(jst)
Comment 2•22 years ago
|
||
Comment on attachment 125357 [details] [diff] [review]
v1
sr=jst
Attachment #125357 -
Flags: superreview?(jst) → superreview+
Assignee | ||
Comment 3•22 years ago
|
||
I won't be able to check this in any time soon, so feel free.
Reporter | ||
Comment 5•22 years ago
|
||
checked in
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•