vote up 1 vote down star
1

Duplicate of:

stack overflow at line 105 [closed]

What would this error mean:

stack overflow on line:25

Please bear in mind that I am not technical at all.

flag
Are you even writing a program or is this an error you received in some program? – BobbyShaftoe Mar 18 at 0:30
This website is for programmers to help each other. If you are not a programmer, you will probably get more useful information elsewhere. – Rex M Mar 18 at 0:32
Duplicate of stackoverflow.com/questions/324875. – phihag Mar 18 at 0:35
Sounds like the OP got an error message. Not really their fault, the programmer should have never displayed that if that is teh case. – Ed Swangren Mar 18 at 0:42
3  
How is this an exact duplicate. That linked one had an error on line 105, this one is on line 25. :-) – paxdiablo Mar 18 at 2:38
show 5 more comments

closed as exact duplicate by Rex M, David, hasen j, Ray, Mark Biek Mar 18 at 0:41

3 Answers

vote up 26 vote down

All programs have something called a call stack. Whenever your program calls a function, an item is placed (pushed) on the stack. When the function returns, it's removed (popped). Program call stack sizes are strictly limited: if you put too many calls on the stack, it will overflow.

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):

link|flag
vote up 2 vote down

See also What is a stack overflow error

link|flag
vote up 1 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.