diff --git a/mozilla/js/src/jsexn.c b/mozilla/js/src/jsexn.c index 8191e6ebd01..1d13f18be76 100644 --- a/mozilla/js/src/jsexn.c +++ b/mozilla/js/src/jsexn.c @@ -1052,7 +1052,8 @@ js_InitExceptionClasses(JSContext *cx, JSObject *obj) /* Make a constructor function for the current name. */ atom = cx->runtime->atomState.classAtoms[exceptions[i].key]; - fun = js_DefineFunction(cx, obj, atom, exceptions[i].native, 3, 0); + fun = js_DefineFunction(cx, obj, atom, exceptions[i].native, 3, + JSPROP_READONLY | JSPROP_PERMANENT); if (!fun) break;