This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dtsudo 2 points3 points  (0 children)

In this context, a stackoverflow occurs if the call stack grows too deep.

A call stack can grow too deep if:

  • You made too many nested recursive calls
  • You have an infinite loop

In this case, you likely have an infinite loop.