From ccf1179c98f1eedbda91cc4bb50ecb4c19df6ebe Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Fri, 21 Feb 2014 16:22:48 -0800 Subject: [PATCH] Bug 975277 - Followup bustage fix for the very recent removal of shortId. r=me CLOSED TREE --- js/src/jsproxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jsproxy.cpp b/js/src/jsproxy.cpp index 405fce735c9..34877a43076 100644 --- a/js/src/jsproxy.cpp +++ b/js/src/jsproxy.cpp @@ -2555,7 +2555,7 @@ Proxy::set(JSContext *cx, HandleObject proxy, HandleObject receiver, HandleId id if (!Proxy::getPropertyDescriptor(cx, proxy, id, &desc, JSRESOLVE_ASSIGNING)) return false; if (desc.object() && desc.setter() && desc.setter() != JS_StrictPropertyStub) - return CallSetter(cx, receiver, id, desc.setter(), desc.attributes(), desc.shortid(), strict, vp); + return CallSetter(cx, receiver, id, desc.setter(), desc.attributes(), strict, vp); // Ok. Either there was no pre-existing property, or it was a value prop // that we're going to shadow. Make a property descriptor and define it.