Subj : Re: SIGBUS on Latest CVS checkout of Spidermonkey To : netscape.public.mozilla.jseng From : prohto Date : Thu Jun 30 2005 10:36 am Now I'm testing using the following modification: Index: jsgc.c =================================================================== RCS file: /cvsroot/mozilla/js/src/jsgc.c,v retrieving revision 3.103 diff -r3.103 jsgc.c 1073a1074 > unsigned long nslots=0; 1132c1133,1136 < if ((vp[-1] + 1) * sizeof(jsval) <= GC_NBYTES_MAX) --- > memcpy( &nslots, &vp[-1] , sizeof( vp[-1] ) ); > nslots++; > > if (nslots * sizeof(jsval) <= GC_NBYTES_MAX) .