Bug 996744 - fixed a type that causes a TypeError in Utils.jsm. r=eeejay

---
 accessible/src/jsat/Utils.jsm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
This commit is contained in:
Yura Zenevich 2014-04-15 14:24:57 -04:00
parent 0dcb1838b9
commit bc55f7c1fe

View File

@ -597,7 +597,7 @@ PivotContext.prototype = {
while (parent && (parent = parent.parent)) {
ancestry.push(parent);
}
} catch (e) {
} catch (x) {
// A defunct accessible will raise an exception geting parent.
Logger.debug('Failed to get parent:', x);
}