зеркало из https://github.com/mozilla/gecko-dev.git
[Bug 345264] FeedProcessor should set this._result to null after sending the result to the listener, r=ben
This commit is contained in:
Родитель
154cd0d3ae
Коммит
25fb925abd
|
@ -971,8 +971,14 @@ FeedProcessor.prototype = {
|
|||
catch (e) {
|
||||
LOG("FIXME: " + e);
|
||||
}
|
||||
if (this.listener != null) {
|
||||
this.listener.handleResult(this._result);
|
||||
|
||||
try {
|
||||
if (this.listener != null)
|
||||
this.listener.handleResult(this._result);
|
||||
}
|
||||
finally {
|
||||
this._result = null;
|
||||
this._reader = null;
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче