Bug 350949. Feed leaks. Make sure the sync methods break the cycle with the SAX parser. r=vlad

This commit is contained in:
sayrer%gmail.com 2006-09-11 20:57:22 +00:00
Родитель ded1fdb50e
Коммит fc7eed5626
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1152,11 +1152,13 @@ FeedProcessor.prototype = {
this._init(uri);
this._reader.parseFromStream(stream, null, stream.available(),
"application/xml");
this._reader = null;
},
parseFromString: function FP_parseFromString(inputString, uri) {
this._init(uri);
this._reader.parseFromString(inputString,"application/xml");
this._reader.parseFromString(inputString, "application/xml");
this._reader = null;
},
parseAsync: function FP_parseAsync(requestObserver, uri) {