🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

stack overflow

Started by
0 comments, last by Nordgeist 22 years, 8 months ago
Hi, I got a stack overflow in kernel32.dll, how I can handle this bug, should I write a routine which checks every part of my programm if there is needed to much cache, or can I find out which part needs to much cache in an other way?
Advertisement
Check if you have any functions which could possibly call themselves (ie recursive functions). If you do, make sure that in doing so, an infinite loop will not be created.

That is the standard error for one of those problems, which I''m guessing is what it is, so give that a shot.

Trying is the first step towards failure.
Trying is the first step towards failure.

This topic is closed to new replies.

Advertisement