Tagged Questions

The exception (error) that is thrown when the limited memory available for the execution stack is exhausted. This is almost always caused by too many nested method calls, which ultimately results in an infinite recursion.

learn more… | top users | synonyms

21
votes
8answers
1k views

How do I track down the cause of a StackOverflowException in .NET?

I get a StackOverflowException when I run the following code: private void MyButton_Click(object sender, EventArgs e) { MyButton_Click_Aux(); } private static volatile int reportCount; private ...
21
votes
6answers
2k 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?
21
votes
4answers
11k 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 ...
15
votes
2answers
440 views

StackOverflowException in .NET 4

The following code works fine until I upgrade to .NET 4 (x64) namespace CrashME { class Program { private static volatile bool testCrash = false; private static void Crash() ...
11
votes
2answers
3k 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 ...
8
votes
2answers
2k views

Error while opening the Eclipse Android Layout Editor

Since yesterday everytime I open my layout Editor in Eclipse for the Android UI I get the following exception: Unhandled event loop exception java.lang.StackOverflowError at ...
7
votes
7answers
9k views

StackOverflowException without recursion or infinite loop?

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. This ...
6
votes
4answers
187 views

how to deliberately trigger a StackOverflowException without using recursion?

I was told that every method has a stack the size of 1mb. So I assumed that initializing 256 integer values in one method will cause a StackOverflowException. I tried that in code, but no exception ...
6
votes
1answer
146 views

netbeans 7.0 and scala results in stackoverflow

I'm experiencing some rather annoying problems with scala. The problem is, that I can compile small scala project perfectly, but when the projects are bigger, the compiler crashes with an ...
6
votes
2answers
407 views

Linq to SQL throwing a StackOverflowException

I'm executing a pretty simple query using Linq to SQL. I'm creating the expression and then passing it to the Where() extension method. The Linq internals are throwing a StackOverflowException when I ...
6
votes
2answers
233 views

Implementing an overflow-free system stack in ANSI C

I was just reading about how Google Go makes each thread with a reduced stack size by default, and then links to new stacks if an overflow would occur ( see page 16 in here ). I was wondering the best ...
6
votes
8answers
847 views

How to produce a StackOverflowException with a few lines of code?

How can I produce a StackOverflowException with minimal lines of code?
6
votes
9answers
3k views

How to increase to Java stack size?

I asked this question to get to know how to increase the runtime call stack size in the JVM. I've got an answer to this, and I've also got many useful answers and comments relevant to how Java handles ...
6
votes
6answers
923 views

C# - System.StackOverflowException with Lambda

Under what situations would this code error out with System.StackOverflowException? Accounts.Sort((x, y) => string.Compare(x.AccountId, y.AccountId)); Update: the property is written as: ...
5
votes
4answers
178 views

I get a StackOverFlowException on this code because my JVM doesn't support tail call optimizaion, right?

I get a StackOverflowException on this Java method: private static final Integer[] populate(final Integer[] array, final int length, final int current) { if (current == length) { return ...
5
votes
4answers
325 views

How to avoid this stackoverflow exception?

Here is the situation, I am developing a binary search tree and in each node of the tree I intend to store the height of its own for further balancing the tree during avl tree formation. Previously I ...
5
votes
2answers
149 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 ...
5
votes
5answers
1k 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 ...
4
votes
2answers
59 views

Memory bug detector for embedded systems?

What are the most useful tools for finding memory management errors in embedded systems? Is valgrind capable of doing that? What input do they need? Source code? Object code? Is there a difference if ...
4
votes
7answers
349 views

StackOverflowException was unhandled

I'm having this error in my code An unhandled exception of type 'System.StackOverflowException' occurred in MedCareProviderLibrary.dll Here is a snippet of my code and where the error is coming ...
4
votes
1answer
149 views

StackOverflowException in XML to C# class

I am trying to make a class in C# on the basis of the following XML code: <?xml version="1.0" encoding="ISO-8859-1"?> <Catalog> <Book> ...
4
votes
2answers
300 views

Why does a StackOverflowException in a child AppDomain terminate the parent AppDomain?

I was under the impression that AppDomains are isolated from each other. It seems that in the case of a StackOverException, this isn't the case. To demonstrate the issue, I created a simple console ...
4
votes
1answer
180 views

Recursive computation expressions

In a previous question I was told how to rewrite my computation expressions so it uses tail recursion. I rewrote my code but still got a StackOverflowException. To locate the problem I wrote some ...
4
votes
2answers
177 views

Tracking Down a Stack Overflow in My Linq Query

I've written the following Linq query: IQueryable<ISOCountry> entries = (from e in competitorRepository.Competitors join c in countries on e.countryID equals c.isoCountryCode where ...
4
votes
4answers
1k views

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 procedures overflows, I'd like to "penalize" that value.
4
votes
4answers
155 views

How to monitor a .Net server application for fatal exceptions?

I am developing a .Net server application, which is supposed to run continously. I would like to have a notification email sent each time the server process is terminated for any reason. Ideally the ...
4
votes
3answers
231 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 ...
4
votes
1answer
1k views

How do you change default stack size for managed executable.net

We have discovered that one of our auto generated assemblies is throwing a StackOverflowException on new(). This class has (bear with me please) 400+ simple properties that are initialised (most by ...
4
votes
5answers
852 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 ...
3
votes
2answers
110 views

Why doesn't .NET log the stack trace for StackOverflow exceptions?

If I write this: class Program { static void Main(string[] args) { throw new Exception("lol"); } } and run the exe from the command line, I get two entries in my event log. One ...
3
votes
2answers
156 views

How can I debug this StackOverflowException in my WinForm application?

I have a winform application. Every few seconds I check some log files, read in any new data and insert any new data into a DB. When I run the application for around an hour 1/2, I get a ...
3
votes
1answer
212 views

Infinite Loop and Cross Threading

I am a student attempting to learn VB.NET on my own. Today I wanted to tackle the BackgroundWorker component. I found an excellent article online: How To Use a Background Worker. I successfully ...
3
votes
4answers
202 views

why do I get a StackOverflowException?

Below is my code of Battleship game. I keep getting error Process terminated due to StackOverflowException. . It keeps pointing to char[,] Grid = new char[10, 10]; How can this be fixed? ...
3
votes
7answers
115 views

I'm getting StackOverflowException error in my nested class on set function of property C#

public class Class1 { public Class1() { prop = new Class2(); } public Class2 prop { get; set; } public class Class2 { ...
3
votes
1answer
264 views

F# DataContractJsonSerializer StackOverflowException

dataElementsList : TypesAndData.DataElement list is a list of 50,000 records (actually many more but let's start small). I am trying to serialize to a JSON file: let ser = ...
3
votes
1answer
744 views

How to print stack trace of StackOverflowException

I am developing a .Net 2.0 application in which a StackOverflowException occurs. Is there a way to print/log the stack trace before/during the application aborts? This is a long running server-side ...
3
votes
1answer
447 views

Why is this getter throwing StackOverflowException, but only when called from one project?

I have a few projects: A database interface project that defines Thingo (main solution) A logic project that defines ThingoChooser (plugin solution) A GUI project that refers to the logic project ...
3
votes
2answers
326 views

Is there a way to detect and debug circular references when using StructureMap?

Lately I've been using a larger number of smaller objects, because they are simpler and easier to reuse. Most of the time there isn't any problem injecting these objects into one another using ...
2
votes
2answers
146 views

Custom class causing a stack overflow in .NET's XML serializer

Okay, The post was getting way too long and contained way too much self corrects, so I'm rewriting it from start. If you want to read back, check the changelog. The latest revision of the code can be ...
2
votes
3answers
63 views

How to write this function properly? It gives me out of memory every time

I have some code running in my While loop: while (Time <= EndPeriod) { ... code ... Tine.AddTime(Time); } The problem I am having is where Time.AddTime(Time) executes it creates a ...
2
votes
1answer
98 views

StackOverflowException in overloaded methods

I'm trying to call overloaded method in code like this: public abstract class BaseClass<T> { public abstract bool Method(T other); } public class ChildClass : BaseClass<ChildClass> { ...
2
votes
3answers
235 views

C++ DLL called from C++ Console App Works, called from C# Console App has stack overflow

I recieved some C/C++ code for use in another project. I put it into a DLL and then called the DLL from a C++ test harness. It worked fine and matched the results from when the code was just a ...
2
votes
0answers
101 views

Using a Constrained Execution Region to Handle StackOverflowExceptions

Having read this article (and others) on .NET reliability features, I am led to believe that the following code should handle StackOverflowExceptions: class Program { private static int ...
2
votes
3answers
1k views

Suggestion for chkstk.asm stackoverflow exception in C++ with Visual Studio 2010

I am working with an implementation of merge sort. I am doing C++ Visual Studio 2010. But when I took a array of 300000 integers for timing, it is showing an unhandled stackoverflow exception and ...
2
votes
3answers
179 views

What might cause a Stack Overflow during linq iteration of Dictionary?

I have the following dictionary: Dictionary<long, ChangeLogProcess> _changeLogProcesses = new Dictionary<long, ChangeLogProcess>(); I have a method that attempts to get the next ...
2
votes
3answers
260 views

Another Quicksort stackoverflow

So I've been trying to implement a quicksort myself, just to learn something from it, but it also generates a stackoverflowexception, but I can't seem to find what the cause is. Can someone give me a ...
2
votes
1answer
574 views

Why Test crashes using NUnit / TestDriven.Net2.0?

I have a Set of TestFixtures running fine. I added a new Test into the fixture, but for some reason, I am not able to run it. Other tests in other classes and even in the same class run fine. Both ...
2
votes
4answers
1k 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 ...
2
votes
1answer
204 views

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.
2
votes
2answers
768 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 ...

1 2 3