Duplicate of:
What would this error mean:
stack overflow on line:25
Please bear in mind that I am not technical at all.
|
1
|
Duplicate of:What would this error mean:
Please bear in mind that I am not technical at all. |
||||||||||||
|
|
|
All programs have something called a One common way this can happen is if you have a recursive function (a function that calls itself) where there is a bad base case or exit condition. The function will keep calling itself over and over, quickly filling up the stack and causing it to overflow. If you have any recursive functions or recursive function groups ( A() calls B() calls C() calls A(), etc), that is the first place to look. You may also want to check this article (though it's aimed at advanced programmers): |
|||
|
|
|
|
See also What is a stack overflow error |
||
|
|
|
|
It means the function being called on line 25 is causing a memory error. Run your application in "Debug Mode", if you can, and highlight that particular line. |
||
|
|