Bug 785015 - Check for this.aus in appUpdater.removeDownloadListener. r=bbondy

This commit is contained in:
Szabolcs Hubai 2012-10-24 20:39:51 +02:00
parent 19a57d93c6
commit d88afd4d7d

View File

@ -497,7 +497,9 @@ appUpdater.prototype =
},
removeDownloadListener: function() {
this.aus.removeDownloadListener(this);
if (this.aus) {
this.aus.removeDownloadListener(this);
}
},
/**