Subj : Re: SIGBUS on Latest CVS checkout of Spidermonkey To : netscape.public.mozilla.jseng From : prohto Date : Wed Jun 29 2005 12:36 pm Hi everybudy again, I solved the SIGBUS problem by adding the following modification: # cvs diff jsgc.c Index: jsgc.c =================================================================== RCS file: /cvsroot/mozilla/js/src/jsgc.c,v retrieving revision 3.103 diff -r3.103 jsgc.c 1073a1074 > uint32 nslots=0; 1132c1133,1134 < if ((vp[-1] + 1) * sizeof(jsval) <= GC_NBYTES_MAX) --- > nslots = (vp[-1] + 1); > if (nslots * sizeof(jsval) <= GC_NBYTES_MAX) I hope it will be usefull, best regards Carlos Fangmeier H. .