Re: Recursion too deep; the stack overflowed.
Posted by Chris Uppal-3 on Jan 17, 2005; 8:49am
URL: https://forum.world.st/Recursion-too-deep-the-stack-overflowed-tp3372728p3372730.html
Mark Derricutt wrote:
> 10:03:10, 17/01/05: Recursion too deep; the stack overflowed. (16r3E9:
> Recursion too deep; the stack overflowed.)
Most commonly (in my experience, at least) fatal stack overflow errors are
caused by a problem experienced while trying to report an error, which triggers
another error that also cannot be reported, etc...
If that is the case, then the diagnostically interesting bit of the stack trace
will be at the other end of the stack, where something has first gone wrong.
Come to that, the stuff near the bottom of the stack, just before/as it enters
the recursion, are usually most useful for /any/ recursion overflows.
-- chris