mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 21:44:11 +01:00
Fix Firefox exploding with OOM errors when stringifying certain functions.
This commit is contained in:
@@ -898,7 +898,9 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
|
||||
keys.push([i, <>{key}{noVal ? "" : <>: {value}</>}
</>]);
|
||||
}
|
||||
}
|
||||
catch (e) {}
|
||||
catch (e) {
|
||||
util.reportError(e);
|
||||
}
|
||||
|
||||
function compare(a, b) {
|
||||
if (!isNaN(a[0]) && !isNaN(b[0]))
|
||||
|
||||
Reference in New Issue
Block a user