14
votes
6answers
787 views
What is a stack overflow?
What is a stack overflow error? What type of programs/programming languages is it likely to occur in? Is it unlikely to occur in web application code?
6
votes
1answer
2k views
How do I prevent and/or handle a StackOverflowException? (C#)
I would like to either prevent or handle a StackOverflowException that I am getting from a call to the XslCompiledTransform.Transform method within an Xsl Editor I am writing. The problem seems to be …
5
votes
2answers
54 views
Java snippet that causes stack overflow in the compiler or typechecker (javac)?
Yesterday at a seminar the presenter showed a small java program, with 3 classes, featuring both co-variance and contra-variance. When attempting to compile using javac, the type checker will throw a …
4
votes
6answers
681 views
StackOverflowException without recursion or infinite loop?
Hello,
Background
I have a DataGridView control which I am using, and I added my handler below to the DataGridView.CellFormatting event so the values in some cells can be made more human-readable. …
3
votes
2answers
91 views
StackOverflowException
With the StackOverflowException are the conditions to be thrown hardcoded or dependent on the machine the code is running on?
I am almost certain the latter but have failed in my searches and don't …
3
votes
5answers
306 views
debug stack overflow in windows?
So I'm trying to debug this strange problem where a process ends without calling some destructors...
In the VS (2005) debugger, I hit 'Break all' and look around in the call stacks of the threads of …
2
votes
2answers
290 views
Why this Linq code always throws System.StackOverflowException?
//A query to a local object
var deletionCommands = commands
.Where(a => a.Operation != Operation.Addition)
.Select(a => new { a.Prestador.cod_prestador, a.Prestador.cod_desdobramento …
2
votes
3answers
204 views
Stack overflow when replacing ‘ with ‘’ in VB 6.0
I'm looking into some legacy VB 6.0 code (an Access XP application) to solve a problem with a SQL statement by the Access app. I need to use replace single quotes with 2 single quotes for cases where …
2
votes
8answers
536 views
How can I avoid this infinite loop?
It feels like there must be some semi-simple solution to this, but I just can't figure it out.
Edit: The previous example showed the infinite loop more clearly, but this gives a bit more context. …
2
votes
2answers
532 views
Help catching StackOverflowException with WinDbg and ADPlus
Short Version
I want an ADPlus script that will do a full memory dump on the first-chance StackOverflowException, before anything is cleaned up, and ignore all other exception types.
Log Version
…
2
votes
6answers
489 views
How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?
Background
I have an application with a Poof-Crash[1]. I'm fairly certain it is due to a blown stack.
The application is Multi-Threaded.
I am compiling with "Enable C++ Exceptions: Yes With SEH …
1
vote
4answers
205 views
Overloading Getter and Setter Causes StackOverflow in C#
I am not sure what is causing the StackOverflowException when I try to overwrite a get and set function. When I just use the default get and set it works.
enum MyEnumType
{
....
}
public MyEnumType …
1
vote
2answers
121 views
In Fortran 95, why do I get a StackOverflowException when I specify the size of an INTEGER array to be 200,000,000?
200,000,000 is much less than the maximum 32-bit INTEGER, 2,147,483,647.
1
vote
5answers
374 views
Why is my swf causing the Flash Player to crash.
I've got a flex-based swf, which is loading an AS 2-based swf and then, negotiating further activity via a LocalConnection.
From time to time, the AS 2-swf can request that the flex-based swf load a …
1
vote
3answers
242 views
C# Stack overflow
Hi,
I am trying to find out why i am getting a stack overflow exception. I am creating a simple card game for a school assignment and when i clone the cards to return them i get the stack overflow …
