Closed
Bug 353710
Opened 18 years ago
Closed 18 years ago
Memory leak detected on euro.dell.com
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: vlad, Unassigned)
References
()
Details
(Keywords: memory-leak)
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7
The this URL is opened, the memory leak detection extension sais:
Leaks in window 0x8de7fb8:
[+] [leaked object] (9588100, http://img.dell.com/images/global/js/common44.js, 2974-3027) = function inittechnotes(doit) {
if (doit) {
if (arguments.callee.done) {
return;
}
arguments.callee.done = true;
}
var notes = document.getElementsByTagName("sup");
if (notes.length > 0) {
var notearr = new Array();
var seen = new Array();
for (i = 0; i < m_tnArray.length; i++) {
seen[m_tnArray[i].k] = 1;
}
var tnid;
for (z = 0; z < notes.length; z++) {
tnid = notes[z].getAttribute("tn");
if (tnid != undefined && tnid.length > 0) {
if (seen[tnid] == undefined) {
seen[tnid] = 1;
notearr.push(tnid);
}
}
}
if (notearr.length > 0) {
try {
var tnReq = getXMLHTTPObj();
tnReq.onreadystatechange = (function (e) {if (tnReq != undefined && tnReq.readyState == 4) {tncallback(tnReq);}});
tnReq.open("GET", generateUrl(notearr), true);
tnReq.send(null);
} catch (e) {
}
} else {
if (m_tnArray.length > 0) {
tncallback(null);
}
}
}
}
[ ] done = true
[ ] prototype (8aae3c8) = [object Object]
Reproducible: Always
Comment 1•18 years ago
|
||
I don't see this in Firefox 2 or in latest trunk.
For what it's worth, /many/ memory leak bugs have been fixed since 1.5.0.x, so if you find a memory leak bug in one of these builds, you should try and see if it's reproducible in 2.0 beta 2.
I'm resolving this as WORKSFORME since it's fixed in current builds, and isn't likely to be fixed in 1.5.0.x.
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Keywords: mlk
Resolution: --- → WORKSFORME
Summary: Memory leak detected → Memory leak detected on euro.dell.com
Version: unspecified → 1.5.0.x Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•