On Friday, October 07, 2011 05:28:39 Andrej Mitrovic wrote: > I'm fairly sure this used to give me a stack overflow error: > void test() { > test(); > } > > void main() { > test(); > } > > Now it only returns exit code -1073741819. > > Could this be related to how WinXP managers error reporting? It's > possible that I have some error reporting service disabled, but I'll > have to check. Is anyone else getting just the exit code?
On Linux, I'm getting a segmentation fault, the same as I always have gotten when the stack gets blown. So, this does appear to be a Windows-specific issue. - Jonathan M Davis