зеркало из https://github.com/mozilla/pjs.git
[Bug 345264] FeedProcessor should set this._result to null after sending the result to the listener, r=ben
This commit is contained in:
Родитель
40c7df07fc
Коммит
51ebe44b58
|
@ -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;
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче