Closed
Bug 336115
Opened 19 years ago
Closed 19 years ago
Leak at extensions/transformiix/source/xslt/util/txXPathResultComparator.cpp:123
Categories
(Core :: XSLT, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: vda, Unassigned)
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20060320 Firefox/1.5
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20060320 Firefox/1.5
StringValue* val = new StringValue;
if (!val)
return 0;
#ifdef TX_EXE
aExprRes->stringValue(val->mStr);
// We don't support case-order on standalone
TX_ToLowerCase(val->mStr);
#else
if (!mCollation)
return 0;
"if (!mCollation) return 0;" leaks val
Reproducible: Always
Updated•19 years ago
|
Assignee: nobody → xslt
Component: General → XSLT
Product: Firefox → Core
QA Contact: general → keith
Version: unspecified → 1.8 Branch
Comment 1•19 years ago
|
||
This is fixed on trunk with the patch from bug 208172, but we're not going to take that one on the branch. This isn't really important, it'll only happen in very rare error cases, patches welcome.
Updated•19 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•19 years ago
|
||
See comment 1.
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•