Alaska Software Inc. - Stack Overflow
Username: Password:
AuthorTopic: Stack Overflow
Carmelo RiofloridoStack Overflow
on Sat, 20 Aug 2005 22:08:53 -0700
I have a hybrid application that is experiencing an "Stack Overflow" fatal
error in one computer. It does not happen in other computers.

Can anyone please let me know what's causing this?


Thanks,
Carmelo Rioflorido
C-Services Holland b.v.Re: Stack Overflow
on Mon, 22 Aug 2005 10:25:11 +0200
Carmelo Rioflorido wrote:

> I have a hybrid application that is experiencing an "Stack Overflow" fatal
> error in one computer. It does not happen in other computers.
> 
> Can anyone please let me know what's causing this?
> 
> 
> Thanks,
> Carmelo Rioflorido
> 
> 

Stack overflow usually happens when a recursive function is used that 
doesn't reach it's stop criteria. So it just keeps calling itself until 
the limited amount of space the computer uses to remember what steps 
were taken runs out.

So I guess on that particular computer the stop criteria is never true. 
Without further information/code snippet it's hard to tell any more.