mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-16 22:04:36 +00:00
Bug 547827 - JavaScript strict warning: modules/util.js, line 617: reference to undefined property thisObj[name] [r=Mardak]
Check that name is a property of thisObj before trying to access it.
This commit is contained in:
parent
5213834801
commit
dbd9998e8a
@ -614,7 +614,7 @@ let Utils = {
|
||||
thisObj = thisObj || {};
|
||||
|
||||
// Delay an existing timer if it exists
|
||||
if (thisObj[name] instanceof Ci.nsITimer) {
|
||||
if (name in thisObj && thisObj[name] instanceof Ci.nsITimer) {
|
||||
thisObj[name].delay = wait;
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user