Top "Stack-overflow" questions

NOT THIS WEBSITE!

C# - Entity Framework - An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll

An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll Make sure you do not have an infinite loop …

c# entity-framework recursion stack-overflow
Hibernate OneToMany java.lang.StackOverflowError

It's my first question here on stack, so please be gentle :D I'm trying to create hibernate OneToMany relationship. When …

java hibernate stack-overflow one-to-many
How to debug: w3wp.exe process was terminated due to a stack overflow (works on one machine but not another)

The problem I have an ASP.NET 4.0 application that crashes with a stack overflow on one computer, but not another. …

asp.net debugging stack-overflow
How to handle or avoid a stack overflow in C++

In C++ a stack overflow usually leads to an unrecoverable crash of the program. For programs that need to be …

c++ error-handling crash stack-overflow
What is the difference between a stack overflow and buffer overflow?

What is the difference between a stack overflow and a buffer overflow in programming?

operating-system stack-overflow buffer-overflow
what is stack smashing (C)?

Code: int str_join(char *a, const char *b) { int sz =0; while(*a++) sz++; char *st = a -1, c; *st = (…

c gcc stack-overflow stack-smash
Large 2D array gives segmentation fault

I am writing some C++ code in Linux where I have declared a few 2D arrays like so: double x[5000][500], …

c++ linux stack-overflow
Programmatic button click throws 'System.StackOverflowException' exception

I have written a WinForms program in C#.Net to click a button programmatically within a password form. Form1 loads …

c# button click stack-overflow simulate
try/catch on stack overflows in java?

Can you try/catch a stack overflow exception in java? It seems to be throwing itself either way. When my …

java stack-overflow
Stack overflow caused by recursive function

I'm a beginner in C++. Yesterday I read about recursive functions, so I decided to write my own. Here's what …

c++ function recursion stack-overflow