3
votes
4answers
130 views
PHP doesn’t handle stack overflow?
I was surprised when I just tried the following PHP code:
function foo()
{
foo();
}
foo();
I expected to get "500: Internal server error". Instead the connection was closed …
0
votes
1answer
36 views
WPF style causing loop
Why does the following XAML cause a stack overflow exception with some themes?
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDi …
0
votes
1answer
43 views
Stack Overflow in IE with JQuery (at line 12/1076)
I'm using JQuery from Google CDN and I've been getting stack overflow error (using IE8) at lines 12 (for the min file) and 1076 (for the uncompressed one). The JQuery code at the l …
0
votes
0answers
1k views
How does a stack overflow? [closed]
The stackoverflow.com logo suggests a certain description of a stack overflow. I don't mean to say that logos must be correct in what they depict. The logo is perfectly all right a …
0
votes
3answers
265 views
IIS stackoverflow
Here's the thing. We've been chansing an bug on my WCF web application (W2K3 IIS) which was resulting in a stackoverflow.
To fix it I need to increase the stack of my application b …
0
votes
0answers
49 views
Feature for Stackoverflow? [closed]
I would like to store the questions/answers I deem important and informative within my "portfolio" in Stackoverflow.
Imagine a Stackoverflow where you can quickly peek in your "po …
2
votes
5answers
202 views
Stack Overflow in Fortran program
I have a problem with my simple Fortran program. I am working in Fortran 77, using Compaq Visual Fortran. The program structure must be in the form of a main and a subroutine, beca …
1
vote
12answers
305 views
Can you give an example of stack overflow in C++?
Can you give an example of stack overflow in C++? Other than the recursive case:
void foo() { foo(); }
0
votes
2answers
151 views
Using Direct Connect access to ArcGIS databases in standalone applications
Hi everybody
I work in an enterprise designing, creating and maintening custom applications on the base of ESRI ArcGIS. Some customers use Direct Connect, to connect to database …
1
vote
3answers
53 views
Getting Stack overflow with GNU CLisp (Windows)
I'm getting "Program stack overflow RESET" message while running my program. So I set added a counter to see how many times I'm recursively calling the main function in my program. …
1
vote
3answers
69 views
DirectShow DVD playback
I have created a custom allocator/presenter that works fine for playback of normal media files. However, when I use the following code to try to playback a DVD, it fails with a st …
0
votes
2answers
77 views
Stack Overflow After 15 Recursions with Javascript Class Function
I have the following code sample to illustrate my point. When I load this in IE8 on Vista I get the error "Stack Overfow at line:16"
If I recurse using a top level function (outs …
7
votes
6answers
279 views
How do I avoid changing the Stack Size AND avoid getting a Stack Overflow in C#
I've been trying to find an answer to this question for a few hours now on the web and on this site, and I'm not quite there.
I understand that .NET allocates 1MB to apps, and tha …
2
votes
2answers
45 views
Setting up Environment for Buffer Overflow Learning
I am currently reading several security books(my passion) regarding secure programming, however either the distro's they provide on disc are faulty, or non-existent.
Books:Hacking …
2
votes
5answers
226 views
Are programs in functional languages more likely to have stackoverflows?
I am starting to learn ocaml, and am really appreciating the power of recursion in the language. However, one thing that I am worried about is stack-overflows.
If ocaml uses the …
