DO NOT USE THIS TAG TO REFER TO THE Stack Overflow website. If you have a question regarding the site, please go to http://meta.stackoverflow.com. A stack overflow occurs when too much memory is used on the call stack.

learn more… | top users | synonyms (2)

5
votes
0answers
59 views

Stack overflow when starting spark streaming from a checkpoint

When restarting spark streaming from a checkpoint I got this exception. Because it's not related to any code I had produce I have no idea what can cause this problem. Any idea? Exception in thread "...
-1
votes
0answers
15 views

Stack overflow failed because of stack size

#include <stdio.h> // 23byte shellcode from http://shell-storm.org/shellcode/files/shellcode-827.php char sc[] = "\x31\xc0\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69" "\x6e\x89\xe3\x50\x53\...
5
votes
2answers
56 views

Fatal Python error: Cannot recover from stack overflow. During Flood Fill

I've come to a dead end, and after excessive (and unsuccessful) Googling, I need help. I'm building a simple PyQt4 Widget where it lies out a grid of 60x80 squares, each initialized to None. If the ...
1
vote
1answer
41 views

I got a Stack Overflow Error here, but I don't know why

I have a binary search tree and want to find the node with the specified value. This is my code for this, but I get a Stack Overflow Error. I hope, someone can tell me why. My code: public TreeNode ...
-1
votes
0answers
35 views

I found a JavaScript stack-based overflow, how can I execute shellcode?

I am testing this vulnerability on my PS4, I know a segmentation-fault occurs. I want to try to execute code before this occurs. To be honest, I have little idea of what I'm doing. All I know is: ...
-1
votes
0answers
33 views

IE11 Out of Stack Space - Aurelia

I have an Aurelia application that is failing to load in IE11 but is fine on Chrome and Firefox. The error I receive is: The first code snippet is the line that is referenced in the stack trace ...
-1
votes
1answer
25 views

StackOverflowError in a recursive method

The program below should sum up all even numbers from n to 0 (negative) or from 0 to n (positive). I should not use other methods or *; *= The problem is that the program does not stop after zaehler(...
1
vote
0answers
28 views

How does StackExchange solve having a single login for all its domains/sites?

If I've previously registered for multiple StackExchange sites and I'm logged out of all of them and then log into say StackOverflow and then open a tab and go to say SuperUser I find that I'm logged ...
-3
votes
0answers
15 views

Is it a bug on SO? [on hold]

Normal: When clicking on 0 (between upvote and downvote): Is it a bug?
5
votes
3answers
4k views

Is there any way to bypass SSP (StackSmashing Protection)/Propolice?

After some research i haven't found any paper describing method to do this (no even an unreliable one). It seems that SSP (StackSmashing Protection)/Propolice
2
votes
1answer
63 views

Stack space overflow error in Haskell with a very small stack size

The Haskell program main=main>>main fails with 2mem: Stack space overflow: current size 33624 bytes. 2mem: Use `+RTS -Ksize -RTS' to increase it. 33k seems quite small. The OS (via top) is ...
1
vote
0answers
31 views

Bypass StackGuard protection in order to have buffer overflow without altering the canaries and get root access

Hello eveyone I am new to cyber security student and i'm trying to solve an exploit problem. So, we are having the following C program which is compiled with StackGuard and we have to gain root access....
-1
votes
0answers
24 views

Avoiding stack overflow in hetero recursion type-safely

By "hetero[geneous]" i mean a mutual recursion with varying return types. Notation Little explanation to the pseudo-code that i use: comment : -- blabla type annotation : value : Type function ...
1
vote
3answers
28 views

How do I get the correct output for my clock created with java?

My Teacher has given me this assignment. She gave us a ClockTester.java main program and we have to create a public class that declares the objects and methods to use in the Clock Tester. Below is the ...
6
votes
2answers
177 views

An unhandled exception of type 'System.StackOverflowException' occurred in VimService55.XmlSerializers.dll

I am working on an asp.net mvc-5 web application and i am using ap.net version 4.5. Inside my web application I am executing some power-shell scripts to get some hardware info about some servers and ...
-1
votes
1answer
27 views

StackOverFlowException: Value is either too small or too large for int 32 in MS TextBox

I have created a simple application with MS TextBox control and DataBinding has been done to the TextBox. If I try to enter the double value into the TextBox, then I got “StackOverFlowException: ...
0
votes
0answers
16 views

Stack Exchange Search API

I want to use search feature of StackExchange for my application. I have observed that using "/search" API I can specify the string to be searched only as part of title and not as part of the body. ...
0
votes
0answers
24 views

StackOverflowException Deserialize to Object Recursion Error

On my development machine I do not get an error, I deployed to another machine with remote debugged and it throws a StackOverflowException error when Deserializing the xml to a class object. I am ...
2
votes
1answer
19 views

Encoding clone $this in JsonSerializable

This simplified case is resulting in a PHP segfault (exit 127): class Datum implements \JsonSerializable{ public function jsonSerialize(){ return clone $this; } } echo json_encode(new Datum); ...
75
votes
11answers
104k views

How to increase the 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 ...
-2
votes
0answers
14 views

Why stackoverflow community vote down questions which posted to get ideas? Wasnt that cruel? [closed]

First of all I have to tell that Stackoverflow is a great site and the developers in here helped us lot. Appreciate the service Stackoverflow doing to the community. But I have a big problem. Not ...
0
votes
1answer
17 views

An unhandled exception of type 'System.StackOverflowException' occurred in App_Web_1wvcoe1q.dll

I have an ASP.Net MVC application. Recently it worked correctly and now when I run it and enter login credentials it hangs long time and says An unhandled exception of type 'System....
0
votes
1answer
18 views

$esp register not found

I am learning debugging with gdb and registers, but I am stuck in one point. As an instruction, I should print print $esp result: $1 = -9008 but I was expecting such result: $2 = (void *) ...
0
votes
1answer
22 views

Java StackOverflowException in GUI

so I have this little snake game and I get StackOverflow error which looks like so: Exception in thread "main" java.lang.StackOverflowError at java.awt.Component.setBackground(Component.java:1835) ...
0
votes
0answers
12 views

Jongo with Play Framework: StackOverflowError when trying to insert

I have yet another problem. I am trying to use the Play Framework 2.5 together with MongoDB using the Jongo plugin for Play. First of all, Im not quite sure if I've implemented it correctly. Here is ...
0
votes
1answer
64 views

Scala partial tail recursion

Because I am defining an interpreter with a lot of variables, I am writing this: type Context = Map[String, Int] abstract class Expr case class Let(varname: String, varvalue: Expr, body: Expr) ...
1
vote
1answer
75 views

Spring Data Repository StackOverflow

guys! Found some strange behavoir when working with Spring Data Repositories. I wrote these classes and interfaces: @Transactional(readOnly = true) public interface UserRepository extends Repository&...
0
votes
0answers
27 views

stackoverflow lost reputation points on one answer [migrated]

I recently started participating in answering questions on stackoverflow and helping other users for gaining a higher reputation, it looks like i lost 15 reputation points on this subject and i am ...
1
vote
0answers
18 views

StackOverflowError inserting data into Perst database

I have a long-running process which consumes data from multiple clients and stores that data into a Perst database. The Perst database is embedded and stores the data to the disk. However, after ...
-3
votes
0answers
15 views

can't send file with filezilla to ubuntu server 14.04 [closed]

i have some trouble in FTP. i can't send file from my filezilla to my ubuntu server. I use ubuntu server that I install and configure vsftpd. i have this messages : Command: PASV Response: 227 ...
-2
votes
1answer
33 views

Can someone help me understand this Stack overflow error

I am not the best coder so if you could explain to me why and what I should do to solve this problem it would be greatly appreciated. When I run the program I am able to input everything but at the ...
0
votes
1answer
54 views

Randomized quicksort C#

I am trying to analyze the quick sort algorithm with a random pivot on C#. This is the code I am trying to use this portion of code: //begeeben.wordpress.com/2012/08/22/randomized-quick-sort-in-c/ ...
0
votes
0answers
13 views

RuntimeError: maximum recursion depth exceeded in comparison when using requests_requests_ntlm auth

I have a problem while trying to build an executable for my Python script. I searched a lot on this but unfortunately no answer could solve my problem. I'm using requests module to connect with ...
0
votes
2answers
15 views

stack-protect equivalent in clang compiler?

Most of the mature compilers appear to have good support for stack variable clobbers. GCC: -fstack-protector xlC: -qstackprotect intel: -fstackprotector windows: /RTC For clang I've found -fsanitize=...
0
votes
1answer
38 views

only native call stack shown

My .NET application is crashing. Upon generating full crash dump using Debug Diag, dump file is created named after 'stackoverflow' and i guess there is a stack overflow exception with some thread. ...
4
votes
8answers
3k views

Recursive functions in OCaml

I have a little problem: I want to solve this problem with OCaml, so I tried this -> -> let rec somme x = if ( nor (bool_of_int (x mod 3)) (bool_of_int (x mod 5))) then x + (somme x-1) else (somme ...
0
votes
0answers
19 views

android studio open project stackoverflowerror

in android studio when I try to open a project the ide give me stackoverflowerror. when I click on link it list me some lines like below: when I try to report it give me another error (Error Report ...
-1
votes
1answer
44 views

Simple game throws StackOverFlowError

I made this simple game where an image is drawn where the cursor is. For a while it works but soon it throws a StackOverFlowError Exception. public class Graphic extends JComponent { private ...
1
vote
1answer
29 views

Getting “Exception in thread ”main“ java.lang.StackOverflowError” and a lot of errors [duplicate]

I'm really new to programming, and I'm working on a java assignment for school and I know That i got most of the code I've written wrong, but it's the first time I've really attempted anything like ...
-2
votes
1answer
62 views

stack=java.lang.StackOverflowError: stack size 8MB

I'm getting this StackOverFlow error, i understand it fully, but the issue is im not dealing with big data, So how can this error be produced ? I have an activity, Framelayout, a fragment, 3 options....
0
votes
1answer
49 views

An unhandled exception of type 'System.StackOverflowException' occurred in Slate.exe

I'm working on an application in C# and unexpectedly I started getting this exception "An unhandled exception of type 'System.StackOverflowException' occurred in Slate.exe". Following are the ...
-5
votes
0answers
22 views

How does stackoverflow.com implement the notification feature? [duplicate]

When I am browsing stackoverflow.com, I found that the notifications will show up when I got new upvote or someone leave the comment on my question or answer. I am curious how stackoverflow.com ...
11
votes
1answer
10k views

Explanation of R: options(expressions=) to non-computer scientists

I have written a recursive function of the form foo=function(vars,i=2){ **do something with vars** if(i==length(vars)){ return(**something**) }else{ foo(vars,i+1) } } length(vars) is ...
0
votes
1answer
75 views

Application not rendering all particles. Exception in thread “main” java.lang.StackOverflowError

So I have a class project where we're supposed to use MVC to refactor code that animates a system of particles using Java Swing. We utilize Graphics2D to accomplish this. I can get one particle to ...
6
votes
1answer
7k views

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 I try to fetch some data from my DB, I'm getting StackOverflowError. But when ...
-1
votes
0answers
15 views

2016 Moderator Election [migrated]

Why ? Moderator elections are conducted in Stack Exchange (2016 Moderator Election ),how elected moderator helps the Stacker.
1
vote
3answers
1k views

Many returned records cause stackoverflow with Hibernate

If there are many return records from DB. It will get stackoverflow problem. User is a class, which has a one to many relationship (to 3 other classes). When I print out the SQL, i found that the ...
0
votes
0answers
13 views

Stackoverflowexception with xUnit and dotnet CLI - which test?

I'm using dotnet to run my unit tests in xUnit. In one of my unit tests I get a Stackoverflow. How do I determine which unit test causes this? Project.json (relevant parts): "dependencies": { "...
0
votes
0answers
24 views

How to gain more reputation points? [migrated]

Can any body please explain me , How to gain more reputaion points in stackoverflow? I can see almost all questions have been already asked! I am new to software developement and a budding software ...
0
votes
0answers
27 views

StackOverflowError play framework at compilation

I have a problem with Play framework, I don't know why... Impossible to compile my project ... When I compile (with "activator run") I have a "stackoverflow" error (see below for the link of the error)...