Bug 330878 - Firefox leaks the update.xml document when it checks for updates. Patch by Michael Wu <michael.wu@mozilla.com>, r=darin

This commit is contained in:
jwalden%mit.edu 2006-06-15 17:52:49 +00:00
Родитель 3770df9eb1
Коммит c170f27358
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1829,6 +1829,8 @@ Checker.prototype = {
update.statusText = getStatusTextFromCode(404, 404);
this._callback.onError(event.target, update);
}
this._request = null;
},
/**
@ -1854,6 +1856,8 @@ Checker.prototype = {
var update = new Update(null);
update.statusText = getStatusTextFromCode(status, 200);
this._callback.onError(request, update);
this._request = null;
},
/**