Mike, The crash appears to be occurring in js_Interpret in js/src/jsinterp.c: overflowing JS stack? Just above that function around line 1198 I see:
#ifndef MAX_INTERP_LEVEL #if !defined XP_PC || !defined _MSC_VER || _MSC_VER > 800 #define MAX_INTERP_LEVEL 1000 #else #define MAX_INTERP_LEVEL 30 #endif #endif It may not be related to the crash, but is there any reason for us not to take the 1000 route here? (I don't have a build going right now, so can't play with it.) Lower down in the file there are also a couple XP_PC blocks explicitly for MSVC that we might want to skip, and one without a comment but likely also a Windows thingie. h~
