Bug 1110572 - Check the existance of a listener in this._listeners. r=edgar

This commit is contained in:
Ben Hsu 2014-12-17 00:33:00 -05:00
Родитель 30195c7bb8
Коммит d18762333c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -558,7 +558,7 @@ MobileConnectionProvider.prototype = {
deliverListenerEvent: function(aName, aArgs) {
let listeners = this._listeners.slice();
for (let listener of listeners) {
if (listeners.indexOf(listener) === -1) {
if (this._listeners.indexOf(listener) === -1) {
continue;
}
let handler = listener[aName];