Bug 350365. "Error: this._reader has no properties" in JS console". r=mconnor

This commit is contained in:
sayrer%gmail.com 2006-09-10 22:57:24 +00:00
Родитель ea5ec8b0a2
Коммит ff8749aaf4
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1144,7 +1144,6 @@ FeedProcessor.prototype = {
}
finally {
this._result = null;
this._reader = null;
}
},
@ -1174,7 +1173,12 @@ FeedProcessor.prototype = {
},
onStopRequest: function FP_onStopRequest(request, context, statusCode) {
this._reader.onStopRequest(request, context, statusCode);
try {
this._reader.onStopRequest(request, context, statusCode);
}
finally {
this._reader = null;
}
},
onDataAvailable: