You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ivan Alagenchev, dev-tech-...@lists.mozilla.org
I don't know if this is the same issue, but starting in Spidermonkey 19, I
had problems when defining properties with the JSPROP_SHARED flag (and in
your case, it seems you don't need it):
#define JSPROP_SHARED 0x40 /* don't allocate a value slot for
this
property; don't copy the
property on
set of the same-named property
in an
object that delegates to a
prototype
containing this property */
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Rolando Abarca, dev-tech-...@lists.mozilla.org
Hi Rolando,
Thank you for your reply. I removed the JSPROP_SHARED flag, but
unfortunately that didn't fix the problem.
Regards,
Ivan
Ivan Alagenchev
unread,
Mar 20, 2013, 7:19:42 PM3/20/13
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Rolando Abarca, dev-tech-...@lists.mozilla.org
I thought I should share with everyone what fixed my problem.
JS_DefineProperties had to set properties on the prototype
JS_DefineProperties(cx,proto, taint_properties) and not the object -
JS_DefineProperties(cx, obj, taint_properties); Changing that fixed the
problem.