Windows error 0xC00000FD, -1073741571

Detailed Error Information

HRESULT analysis[1]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[1][2]
DescriptionThe default facility code.[1][2]
Error Code253 (0x00fd)

Questions

45votes
4answers

How to debug w3wp clr.dll error

My client has an ASP.NET application installed on two production servers (balanced with NLB, but that's irrelevant). Both servers crash every 3-4 hours with the following event viewer logged error: > Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: > 0x4ce7afa2 > Faulting module name: clr.dll, version: 4.0.30319.18034, time stamp: [...] read more
asp.net
iis
crash-reports
w3wp
9votes
1answer

How handle Application Error Exception code: 0xc00000fd

I have an ASP.Net Web API application deployed via IIS. It is in Windows Authentication enable mode only because I want to detect Windows users who access the APIs. For a few days the application will work fine but occasionally it will fail. When the application fails it will present [...] read more
asp.net
iis
windows-server-2012
6votes
2answers

Native image for System.Data.Entity crashing IIS

I have an MVC 3 website using entity framework and it has just recently started crashing on a specific action. I wish I had more information, but all I can pull from the Windows event viewer is this: Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7a5f8 Faulting module name: [...] read more
c#
entity-framework
iis-7.5
entity-framework-5
6votes
2answers

Dump Diagnostics

Recently i received the error log below in my windows Server 2012. Some consequences like web site down happens and a 503 error are launching in the browser. I caught up on updates in OS and i have searching for this problems, that let me to do some options like: [...] read more
windows
iis
w3wp.exe
6votes
2answers

Different versions of msvbvm60.dll on Win7 and Win10

We have a legacy VB6 application that is crashing at a certain point on Windows 10, but not on Windows 7. It also doesn't crash when run via the VB6 IDE (on either OS). On trying to track down the differences I discovered that msvbvm60.dll is subtely different on Win7 [...] read more
vb6
4votes
2answers

Windows Error Reporting and IIS7 on Windows Server 2008

In a windows webservere I'm trying to get a memory dump of a failing IIS 7 worker process (w3wp.exe) with no avail. In the Event Viewer I get the following. Faulting application name: w3wp.exe, version: 7.5.7600.16385, time stamp: 0x4a5bd0eb Faulting module name: clr.dll, version: 4.0.30319.1, time stamp: 0x4ba21eeb Exception code: [...] read more
windows-server-2008
iis-7
windows
4votes
3answers

How to find fibonacci sums of huge numbers?

I'm solving a CSES problem in which I've to find the sum of first 'n' Fibonacci numbers. The code: #pragma GCC optimize("Ofast") #include <iostream> using namespace std; int main() { unsigned long long int n; scanf("%llu", &n); unsigned long long int seq[n]; seq[0] = 0; seq[1] = 1; unsigned long [...] read more
c++
c++11
3votes
3answers

Windows Server 2008 R2 Standard - Cannot download Windows Updates

I'm attempting to update a production server that hasn't had a Windows Update installed in almost 3 years. When I attempt to download any update, even if I select just one, the download hangs at 0% consistently. The first time I downloaded the updates (97 updates), it hung at 46% [...] read more
windows
windows-server-2008
windows-server-2008-r2
windows-update
3votes
0answers

IIS 8 logging stops at midnight UTC

I have one IIS 8 server where the w3logsvc dies at midnight UTC (we're Central Time, so we're UTC -6). I have to manually start the service to get it back running again. I have the logging set to use local time for rollover, but it can't be a coincidence [...] read more
logging
iis-8
windows-server-2012-r2
3votes
3answers

IIS6 + PHP + FastCGI 500 Errors - Where to start looking?

I've set up IIS6 with FastCGI to use php-cgi.exe. I have some php websites by external parties, that I'm trying to run in a test environment. One of the websites just plain gives me a FastCGI Error Page. This does not happen on every page, it just seems to happen [...] read more
php
iis-6
fastcgi
500-error
3votes
3answers

Dev-Cpp "make.exe" error code = 0xc00000fd

This is the log I received from Dev-Cpp when I tried to compile a program: Compiler: Default compiler Building Makefile: "C:\Dev-Cpp\Makefile.win" Executing make... make.exe -f "C:\Dev-Cpp\Makefile.win" all make.exe: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4ff283) Execution terminated I have googled for the answer, I've tried the "PATH" fix, and [...] read more
c++
c
compiler-construction
mingw
3votes
1answer

C++ Stack Overflow with 20,000 size string

My simple program source code is following and it find the (nested) parenthesis pair and repeat the string. 2(R) -> RR #include <iostream> #include <string> #include <stack> using namespace std; string repeated(string str, int n){ string repeat; for(int _=0; _<n; _++) repeat.append(str); return repeat; } string solution(string rgb, int recurdepth) [...] read more
c++
3votes
1answer

Process finished with exit code -1073741571 (0xC00000FD) in Python

I am at early stage of learning Python. I tried calculating Ackerman function for smaller values. It worked just fine until the values are (3,7). Any value higher than that (say 3,8) throws this error. [Process finished with exit code -1073741571 (0xC00000FD)] At first I checked whether recursion limit is [...] read more
python
python-3.x
3votes
2answers

Operator like " >>,<<" overloading does not work

Here is My Code #include<iostream> using namespace std; class Complex { private: double re; double im; public: Complex(double x=0,double y=0):re(x),im(y){} friend ostream& operator<<(ostream&os,const Complex&a); friend istream& operator>>(istream &is,const Complex&a); }; ostream& operator<<(ostream&os,const Complex&a) { os<<"a"<<a.re<<"+j"<<a.im<<endl; return os; } istream& operator>>(istream&is,const Complex&a) { is>>a.re>>a.im; return is; } int main() { Complex [...] read more
c++
2votes
0answers

Windows Explorer keeps crashing in Windows 8.1

This started a few days ago on a machine that has been running WIn 8.1 for over a month. I just finished a clean install of Windows 8.1 with a handful of apps like Dropbox and Office. Yet I'm still getting Windows Explorer crashes such as this: Faulting application name: [...] read more
windows-explorer
windows-8.1
2votes
1answer

ASP.NET Core 2.1 - Stack overflow exception related to dependency injection

I'm getting a stack overflow exception after I load 4 or 5 times a simple controller action. The web app is running on Azure and I was able to dump the exception information and the problem seems to be related to Dependency Injection. internal object GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope) { [...] read more
.net-core
dependency-injection
stack-overflow
2votes
1answer

Stack overflow (0xC00000fd) when populating an array argument but not when populating a static array

Disclaimer: I am a C newbie. I wrote a program to generate a bunch of random numbers in a normal distribution with mean mean and standard deviation stddev. The numbers are put into an array r. The number of random numbers to generate is specified by the constant NUMRANDOMS. I [...] read more
c
2votes
2answers

Why do does my program exit when I have my 2d array declared in main?

I am attempting to read from a text file and store all the words in a 2d array but for some reason my code only works when my 2d array is declared as a global variable (which is not allowed for this project). When I put my 2d array in [...] read more
c++
arrays
2votes
2answers

Fibonacci recursive

I'm trying to generate the x Fibonacci number. I made a float function and I can't find why it's not working. However, with an int function, it's working. #include <stdio.h> float fib(float x) { if (!x) return 0; else if (x == 1) return 1; else return fib(x - 2) [...] read more
c
1vote
1answer

postgres for windows installation error at postinstall

My PC is running windows 10 ver 1803. I downloaded the zip containing the binary of postgres 10. When I tried to init the db with: initdb.exe -D ../data –A trust I received this error: child process was terminated by exception 0xC00000FD creating directory ../data ... ok creating subdirectories ... [...] read more
postgresql
1vote
0answers

IIS app pool is shutting down when connecting to Oracle DSN?

I am trying to connect to the Oracle database using the DSN in my web application and when I browse the site the app pool crashes. The DSN is set up correctly I think because when I hit Test connection it successfully connects. When I looked at the Event viewer [...] read more
windows-7
database
iis
1vote
1answer

Analyzing crashdump, wrong symbols

I am having trouble analyzing a crashdump with windbg. I run: .sympath SRV*c:\symbols*http://msdl.microsoft.com/download/symbols .reload /f /i To get the symbols. All symbols seem to have downloaded to c:\symbols and then i run: analyze -v To analyze. But i get "WRONG_SYMBOLS" in my result (se below). I run windbg in the [...] read more
iis
server-crashes
dump
windbg
1vote
1answer

Process finished with exit code -1073741571 (0xC00000FD) Tensorflow

I know this question gets asked a lot but in my case it's a bit wierd. I just got a RTX 3080 and tried to install Tensorflow based on a tutorial I found on reddit. I did everything as described there: Install Anaconda --> Python 3.8 --> TF-nightly v. 2.5.0 [...] read more
python
tensorflow
pycharm
anaconda
1vote
1answer

Why I have StackOverflow in DFS?

I'm trying to implement a DFS algorithm in c++. I use it to answer the question: "are two vertexes connected or not?", but something went wrong. Sometimes the program gives correct answer, sometimes crashes with 0xC00000FD code. I've google it and know now, that is a StackOverflow error. Here's the [...] read more
c++
algorithm
stack-overflow
depth-first-search
1vote
1answer

Stack overflow with no recursion?

As far as I can see, my code has no recursion, but I am getting exception 0xC00000FD. According to Rider For Unreal Engine, it is happening in the main function. It's being encountered at the decompiled code mov byte ptr [r11], 0x0 It was working fine, then suddenly when I [...] read more
c++
lexer
1vote
0answers

Python crashes either when using recursion one too many times or accessing a large list

size = len(numbers) tree = [None] * size * 3 def build_tree(numbers, root, node, element): if element != 0 and element != size: if tree[node] < numbers[element]: if tree[node + 2] is None: tree[root] = numbers[element] tree[node + 2] = root build_tree(numbers, root + 3, 0, element + 1) else: [...] read more
python
1vote
0answers

Azure App Service crash due to StackOverflowException in MicrosoftInstrumentationEngine_x86.dll

We are experiencing random Azure App Service crashes, multiple times a day. Every time the application crashes the App Service is restarted. The application is an ASP.NET MVC 5 application running .NET Framework 4.7. Crash monitoring is enabled and the results of the crash dumps leads us to the following [...] read more
azure
crash
azure-web-app-service
azure-application-insights
azure-application-insights-profiler
1vote
1answer

Updating Kendo on ASP.NET MVC 5 Stackoverflow exeption

I'm getting a Stackoverflow exeption after updating my ASP.NET MVC Project to the latest Version of Kendo UI. Tested with R3 2020 and R2 2020, the previous Version which worked was R2 2018. I have checked the .NET and ASP.NET Version on the Server. Error Log Failure on the Server: [...] read more
c#
asp.net
asp.net-mvc
kendo-ui
kendo-ui-mvc
1vote
2answers

VS throwing exception when my vector/array size becomes too large

My issue is that I get an exception thrown when my array size becomes too big: "Unhandled exception at 0x005B3BC7 in throw away.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x01002F68)". I need to be be able to run this code with an array/vector size n = 100000, but as of right [...] read more
arrays
sorting
vector
stack-overflow
quicksort
1vote
0answers

Alloacation on stack inside function

Is data allocated on stack inside a function cleared when the function ends? The following code gives me an error (program terminates with 0xC00000FD exception code): void fun() { const long len = (1024 * 1024) / 4; // 1 MB int aa[len]{}; } int main() { fun(); const long [...] read more
c++
memory-management
1vote
0answers

My quicksort in Python3 is breaking the recursion limit

from random import * from time import * import sys def quicksort(mylist, pivot, end): # pivot will always be the first element in the list/sub-list if (len(mylist) == end) and (pivot == 0): # shuffle the list before we start (only happens on the first call) shuffle(mylist) if (pivot == [...] read more
python
python-3.x
recursion
quicksort
1vote
0answers

IIS hosted Aps.Net API fails after upgrading from ASP.Net Core 3.0 to .net Core 3.1

I have a simple API that I bumped from .Net Core 3.0 to .net Core 3.1 hosted InProcess in IIS. All packages are updated to latest version and the application works on my development machine both in release and debug. There are no configuration or server changes done beside installing [...] read more
c#
asp.net-core
iis
1vote
2answers

_CrtSetAllocHook - unhandled exception

I use Windows 10 x64 and Visual Studio 2019. Here is a simple program (x86-Debug) which should print a memory allocation size: #include <iostream> int MyAllocHook(int allocType, void* userData, std::size_t size, int blockType, long requestNumber, const unsigned char* filename, int lineNumber) { std::cout << "Alloc: " << size << std::endl; [...] read more
c++
c
visual-studio
visual-c++
1vote
1answer

BOOST Unit Test stack overflow

I am now using Boost Unit Test to perform unit test for my project. Every time I run the unit test, I got a memory stack problem. I debug into the source code of BOOST library, and I find that the problem comes from invoking the following codes in unit_test_suite.hpp [...] read more
c++
visual-studio-2010
boost-test
0votes
0answers

Win 10, after april 14 update unuseable. RefreshWindowsTool.exe won't open, MediaCreationTool20H2.exe unuseable

refreshwindows tool won't open event viewer log below : Faulting application name: refreshwindowstool.exe, version: 10.0.16217.1, time stamp: 0x57a396f7 Faulting module name: clr.dll, version: 4.8.4341.0, time stamp: 0x6023024f Exception code: 0xc00000fd Fault offset: 0x004d4e0a Faulting process id: 0x14a0 Faulting application start time: 0x01d73c8e03a89894 Faulting application path: c:\6bf104118cbaacc387b91adc\refreshwindowstool.exe Faulting module path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll [...] read more
windows
windows-10
0votes
1answer

KernelBase.dll crashing from multiple games

Kernelbase.dll is being logged as the faulting module in EventViewer from multiple games (And crashing the games) when they attempt to load a multiplayer lobby. From multiple games they all log KernelBase.dll as the faulting module with the same exception code and fault offset. A couple of example games are [...] read more
windows-10
crash
kernel
0votes
1answer

Windows Server 2008R2 IIS Appcrash

We have a web application hosted on several servers of our customers. Recently on only one of them, apppool is recycled about every 15 minutes. I've checked the event viewer and there is no "Warning" level log that contains some help on any occasional exceptions. I found only some "Information" [...] read more
windows-server-2008
iis-7
asp.net
0votes
0answers

Possible stack overflow, but no error is being raised

I'm using Python 3.7, VSCode for some geographic data processing (forest fire detection). My script is exiting in the middle of a recursive function, without any error nor traceback... This is the code that crash (I deleted every line that seemed not essential to the understanding of the function, trying [...] read more
python
stack-overflow
graph-theory
0votes
0answers

How to create huge array in Rust directly on the heap, skipping stack?

I need to declare and initialize array with size at least 8GB (1 billion of f64 variables). Everything I've tried so far is very complicated or inefficient or gives STATUS_STACK_OVERFLOW (0xC00000FD) error because it's first being created on heap. How can I do it efficiently, clean and nice? Is there [...] read more
arrays
rust
heap
stack-overflow
0votes
0answers

'Process finished with exit code -1073741571 (0xC00000FD)'When training CNN in keras using tensorflow as backend

the framing of my CNN is like: model = Sequential() model.add(Conv1D(100, 60, activation='relu', input_shape=(20000, 1), padding='same')) model.add(MaxPooling1D(4)) model.add(Conv1D(50, 4, activation='relu', input_shape=(20000, 1), padding='same')) model.add(MaxPooling1D(2)) model.add(Flatten()) model.add(Dense(400, activation='relu')) model.add(Dense(11, activation='sigmoid')) model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy']) and it is running well in this way. but as long as i change the activation of Conv1D [...] read more
tensorflow
keras
deep-learning
stack-overflow
0votes
1answer

C program termenats after reading file

I am trying to read file in C language and store the data in arrays , It works well except I do not want the program to finish after closing the file #include <stdio.h> #include <stdlib.h> #include "header.h" char TimeDat[24][8] ; float TempArr [2][24]; float HumiArr[24]; float MotionArr[6][24]; void ReadDataFile(char [...] read more
c
file
codeblocks
0votes
1answer

WinForms WebBrowser HtmlDocument.Write behaves differently in different solutions

Recently, my application has crashed when trying to display a rather lengthy (but otherwise simple) HTML e-mail. The crash was caused by mshtml.dll getting a stack overflow (exception code 0xc00000fd). Of note here is that this didn't throw an exception but it actually just crashed the program as a whole. [...] read more
c#
winforms
webbrowser-control
0votes
0answers

Python cProfile/pstats causing overflow?

I'm trying to profile a pretty big project using the following decorator on my main() function, but at line 9 I get a "Process finished with exit code -1073741571 (0xC00000FD)", which searching on Google seems to refer to a stack overflow. Does that mean I can't profile my entire program [...] read more
python
stack-overflow
exit-code
cprofile
0votes
0answers

Any info on this SDL_CreateWindow error on windows?

Using SDL to create window for rendering engine that uses Vulkan. Following this code. Following is the snippet of interest: SDL_Init(SDL_INIT_VIDEO); SDL_WindowFlags window_flags = (SDL_WindowFlags)(SDL_WINDOW_VULKAN); _window = SDL_CreateWindow( "Vulkan Engine", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, _windowExtent.width, _windowExtent.height, window_flags ); I'm using Visual Studio 2019. Saw this error, built SDL from source as this [...] read more
c++
visual-studio
winapi
sdl
vulkan
0votes
0answers

Tensorflow gives exit code -1073741571 (0xC00000FD) when working with GPU

I am using tensorflow==2.4.1 , Cuda 11.0 & 8.0, cudNN 8.0. when i run the following code on my GPU: def internet_model(): model = tf.keras.models.Sequential() model.add(tf.keras.Input(shape=(16,))) model.add(tf.keras.layers.Dense(32, activation='relu')) model.add(tf.keras.layers.Dense(32)) print(model.output_shape) internet_model() It gives the error : 2021-03-17 22:53:27.846734: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library cudart64_110.dll 2021-03-17 22:53:56.628794: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully [...] read more
python
tensorflow
0votes
2answers

Delete whole binary tree C++

Hi I having problem when I try to implement my delete tree function in my Bst class. This is what i have implemented. Currently only have the insert and deletetree functions. struct nodeType { int data; nodeType * LeftLink; nodeType * RightLink; }; class Bst { public: /** * Default [...] read more
c++
0votes
2answers

Maximum recursion depth exceeded. Stack overflow exception

I am currently writing an algorithm to analyze the sorting algorithms. I have many inputs from 1000 numbers up to 1 000 000 inputs. Currently I'm having some problems with the Quick Sort function. As I have an input of 1 000 000 of similar numbers (numbers between 1-10) this [...] read more
c
recursion
bigdata
stack-overflow
quicksort
0votes
1answer

IIS Application pool stop every 15 days without any configuration

On a Windows instance a specific application pool stops every 15 days and we have to manually restart that Under the event logs we are getting dotnet clr.dll error given below. > Faulting application name: w3wp.exe, version: 10.0.17763.1, time stamp: > 0xcfdb13d8 Faulting module name: clr.dll, version: 4.7.3610.0, time stamp: [...] read more
asp.net
iis
model-view-controller
application-pool
windows-server-2019
0votes
1answer

Variables are not available in Pycharm Debugger

I am using the PyCharm Debugger to view the variables of my script. It usually Screenshot of PyCharm code editor. [https://i.stack.imgur.com/ASJET.png] Screenshot of PyCharm execution stack. [https://i.stack.imgur.com/dn1Eo.png] I am trying to inspect the attributes of rulebased_device.subsystem by unfolding the corresponding dropdown menu. It works fine for rulebased_device.system, but with the [...] read more
python
debugging
intellij-idea
pycharm
0votes
0answers

C++ array initialization error with global variable

I tried to run the following very simple block of code: #include <iostream> #include <bits/stdc++.h> using namespace std; int N = 1000027; int main() { cout << "Yes"; int arr[N]; cout << "Yes"; return 0; } However, upon running the program only the first "Yes" text is getting printed, and [...] read more
c++
arrays
initialization
global-variables
array-initialize
0votes
0answers

getting this "Process returned -1073741571 (0xC00000FD)" after running it in codeblocks with MinGW compiler

I am learning C++ and this is my first question for martix array in c++. I am getting Process returned -1073741571 (0xC00000FD) in terminal window. When Tried running it after removing the #define N 1000 then my code gave me the correct result. I want to know why it is [...] read more
c++
0votes
2answers

How do i set an array to have custom lenght?

I am getting an error when i run this code. The error code is 0xC00000FD and I can't seem to find a fix for what i need. Can someone please help me? Here's the code: #include<iostream> #include<conio.h> using namespace std; int main() { int n; int arr[n]; int i; int [...] read more
c++
arrays
0votes
0answers

What's different Debug Build and Release Build in Qt?

I developed application with ArcGIS. This application use TCP, and receive data from other PC. When built with Debug Build and received data, the application terminated abnormally and I got error. Error statement: D:\agent\_work\9\s\src\vctools\crt\vcstartup\src\misc\amd64\chkstk.asm:109: Error: Debugger encountered an exception: Exception at 0x7ff63934e988, code: 0xc00000fd: stack_overflow, flags=0x0 (first chance) After that, [...] read more
c++
qt
0votes
0answers

Unhandled exception at 0x006A549C in myApplication.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x01202FFC)

I am writing a program with C++ that needs to read a CSV file and store it in a binary search tree. But, when the program is reading the file, it fails in the library debugger.jmc.c and in the method void __fastcall __CheckForDebuggerJustMyCode(unsigned char *JMC_flag). Could someone help me? Thanks! [...] read more
c++14
binary-search-tree
0votes
3answers

Code Blocks doesn't show any error but still can't show output (0xC00000FD)

I have this code: #include <iostream> #include <iomanip> using namespace std; main() { int i, n, a[n], b[n], c[n]; cout << "Program kreira nizove po matematickoj zavisnosti" << endl; cout << "Unesite vrednost n =" << endl; cin >> n; for (i = 0; i <=n; i++) { a[i] = [...] read more
c++
0votes
0answers

Non-descriptive stack overflow error when IPython imported

When I run this code def foo(): foo() foo() It obviously causes a stack overflow/recursion error Traceback (most recent call last): File ".../main.py", line 4, in <module> foo() File ".../main.py", line 2, in foo foo() File ".../main.py", line 2, in foo foo() File ".../main.py", line 2, in foo foo() [Previous [...] read more
python
ipython
stack-overflow
error-messaging
0votes
0answers

Android emulator shuts down when accessing video solution (exoplayer)

After some troubleshooting with updating the video solution to Android API 30, I have finally ended up with the following Logcat error after having upgraded Exoplayer to 2.12.0 and imported guava:30.0-jre: [OMX.android.goldfish.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 E/FMQ: grantorIdx must be less than 3 E/FMQ: grantorIdx [...] read more
android
android-emulator
exoplayer
exoplayer2.x
0votes
0answers

.Net Core 3.1 Based Stand alone Web API is crashing with stack overflow exception due to the KERNELBASE.dll

I have a .Net Core 3.1 based Web API created as a standalone package MyApp.exe and installed in a windows based container. Only in certain container instances the WebAPI process MyApp.exe getting crashed randomly. From the application it is not logging any errors. But with the crash Dump got the [...] read more
crash
asp.net-core-webapi
asp.net-core-3.1
.net-core-3.1
crash-dumps
0votes
0answers

embedded error after using Matplotlib on tkinter window

class Window(): def __init__(self, master): self.master = master self.fig = Figure(figsize=(6, 4), dpi=100) self.canvas = FigureCanvasTkAgg(self.fig, master=master) self.canvas.get_tk_widget().place(x=10, y=10) self.toolbar = NavigationToolbar2Tk(self.canvas, master) self.toolbar.place(x=0, y=500) self.fig1 = Figure(figsize=(6, 4), dpi=100) self.canvas1 = FigureCanvasTkAgg(self.fig1, master=master) self.canvas1.get_tk_widget().place(x=650, y=10) self.toolbar1 = NavigationToolbar2Tk(self.canvas1, master) self.toolbar1.place(x=650, y=500) def all_graph(self, master, x, y, image_name): global plot [...] read more
python
matplotlib
tkinter
0votes
1answer

getting no result in terminal window

I have just started coding in C++ and I am using codeblocks. My build log is giving me 0 errors and 0 warning but I do not know why when I run it, it is giving me no result in the terminal. Terminal Window Result: > Process returned -1073741571 (0xC00000FD) [...] read more
c++
codeblocks
0votes
0answers

Process finished with exit code -1073741571 (0xC00000FD) in Clion

I'm at early stage of learning C. My program should find the maximum number of the first column of two-dimensional array. But my program not only doesn't find the maximum, it doesn't work at all. So when I run the program, i get output: Process finished with exit code -1073741571 [...] read more
c
clion
0votes
0answers

2D std::array , stack overflow exception

I am having speed issues with the C++ standard arrays , so I am testing using the stl::array for computation, to see how fast it is. I define a two dimensional array of the struct PAPoint (see below) and attempt to create a 2D array of it. It compiles ok, [...] read more
c++
arrays
visual-studio
stl
0votes
0answers

Blazor app crashing with 'Stack overflow' in output window - What is breaking IIS Express?

I'm building a Blazor app which occasionally stops working. The only indication of what is going wrong is a message in the output window from the 'ASP.NET Core Web Server' that says 'Stack overflow.' enter image description here [https://i.stack.imgur.com/BfXMo.png] Looking in the Event Viewer I can see a log for [...] read more
asp.net-core
iis-express
blazor-server-side
0votes
1answer

Why does it stack overflow?

I'm trying to solve Schrödinger’s equation through diagonalization. And I use C++ on VS2019 and use mkl-lapackage to get the eigenvalue and eigenvector. And the whole file is modificated from intel example of LAPACKE_dsyev. I just modificated for a small piece. But I met that: > 0x00C86C79 has an unhandled [...] read more
c
stack-overflow
lapack
intel-mkl
0votes
0answers

C# - Application Windows Service Crash

I have a project in C# built in Windows Service. It works fine but it crash sometimes without any reason. When i check Windows Event Viewer, the only thing i can see is : Application crash Log [https://i.stack.imgur.com/Oyh72.png] Nom de l’application défaillante <<MyApplicationName>>, version : 7.3.0.0, horodatage : 0x5f4ca7db Nom [...] read more
c#
.net
exception
service
stack-overflow
0votes
0answers

How can I debug when an app pool encounters fatal communication error that did not create dump file when crashing?

An app pool is crashing with the error "A process serving application pool 'appPoolName' suffered a fatal communication error with the Windows Process Activation Service. The process id was 'id'. The data field contains the error number." When other app pools crash in that machine, they create a dump file [...] read more
.net
iis
w3wp
0votes
1answer

C language recursion factoriel not working

For the code down below I get no response, I kept it minimal with no conditions, imagining people will choose positive number for example. It gives me no response besides Process returned -1073741571 (0xC00000FD) execution time : 3.194 s. If I type 5, answer should be 120, not here. #include [...] read more
c
function
recursion
0votes
0answers

enabling 32 bit application result in w3wp.exe crash IIS 10

In my solution, I have three different projects including ASP.Net MVC, Class Library, and Web API. The application works fine on local, but on the production server (Windows Server 2016) after setting "Enable 32-bit Applications = true" in Application Pool (it is a neccessary requirement), the project stopped working. The [...] read more
asp.net-mvc-5
windows-server-2016
application-pool
iis-10
0votes
0answers

wxWidgets dynamic event connect causing crash on quit

Im new to wxwidgets, just learning for about a week, I have a problem with a crash on quitting the to ide MSVS2019. I narrowed it down to the dynamic event handler that I put on a listcontrol to catch selections, but its happened a few times with other events [...] read more
c++
crash
wxwidgets
exit
0votes
0answers

Unhandled exception after specifying a larger size for std::array

I have code that looks like this: #include <array> #include <cstdint> #include <exception> #include <iostream> #include <utility> template<typename T, size_t size> auto randomly_populate_array(std::mt19937& gen, T lower, T upper) { std::array<T, size> arr; std::uniform_int_distribution<T> dist{ lower, upper }; for (auto& e : arr) { e = dist(gen); } return std::move(arr); } [...] read more
c++
limit
unhandled-exception
stdarray
0votes
2answers

C++ array[size] greater than 65535 throwing inconsistent overflow

Building a struct array with size [x>65535] throws 0xC00000FD error, even if x is declared as int64_t, but inconsistently. Will work fine in one line, not in the next. int64_t length; length = (pull from other code); Foo foo[length]; //^ this works Foo2 foo2[length]; //^ this one doesn't Is this [...] read more
c++
arrays
0votes
0answers

Reading large matrix in CSV format (file) in C++

I am trying to read a large matrix stored in CSV format in C++. The same code works well in reading matrix size up to 500*500. But for larger data size, the code throws the following error: Unhandled exception at 0x00007FF612D42068 in z650test3.exe: 0xC00000FD: Stack overflow (parameters: 0x0000000000000001, 0x000000C4532A3000). I [...] read more
c++
csv
large-data
mat
0votes
1answer

Jsystem test unknown failure using Spirent Test Center

I have some weird problem and don't have a clue about how to solve it. I run automation tests using the Spirent Test Center API on win slave (64 bit 8GB RAM). As far as I know test center support only 32bit compilation therefore some of my prerequisites is to [...] read more
jenkins
jenkins-pipeline
jsystem
0votes
1answer

Process returned -1073741571 (0xC00000FD) on my c++ code

The c++ code below works fine for some inputs, but it is stuck at test 9 (number of inputs here is 6000) where it gives me this message "Process returned -1073741571 (0xC00000FD)". This code reads information for n babies (their gender and name). Next it counts the appearances of each [...] read more
c++
0votes
1answer

How do I increase the stack size in Visual Studio C++?

I am writing a program where it is necessary to compute the entries of a n x n matrix with n=1000. If I write the following two lines in my code, I will get a stackoverflow error message: const int n = 1000; double matrix[n][n]; Error message: Exception error at [...] read more
c++
matrix
stack
size
overflow
0votes
0answers

I'm having a problem with kivy, python 3.7.6, it doesn't generate a window despite of having all the packages installed

Please check for any error and help me. I've tried many different things but nothing seems to help. Only this shows up after running the code, but no window import kivy from kivy.app import App from kivy.uix.label import Label class MyApp(App): def build(self): return Label(text='Ola mundo') if __name__ == "__main__": [...] read more
python
kivy
0votes
0answers

Access voilation and Stack overflow error in visual studio

The code was working fine until suddenly it started throwing exceptions out of the blue. Before this, these exceptions never came up at all. The debugger stops at these two points and for some reason keeps showing me correct_math.h. I have three execptions in total and I'm not sure what [...] read more
c++
0votes
0answers

My window form application (c#) built in Visual Studio 2017 got crash after installation

I have window form application which i built in visual studio 2017. The installer setup is create with setup installer in visual studio. whenever i install and run the application it got crash. When i look into the windows event viewer i got this Faulting application name: PosAccounting-Sage50-US.exe, version: 4.3.5.0, [...] read more
c#
visual-studio-2017
crash
windows-forms-designer
setup-project
0votes
1answer

IIS worker process is getting crashed

Application: ASP.NET, C# Framework: 4.6.2 Authentication mode:- Windows Authentication-Allow. Platform:64-bit Server: Win-2012 IIS:8.5 Is being migrated to Azure platform. In testing phase - automated test tool, sends rapid requests. Those requests could be anything like, dummy requests, malicious requests, page doesn't exists, page with inserted javascript or existing page with [...] read more
asp.net
azure
iis-8.5
w3wp
0votes
0answers

Win32 API : Stack overflow in recursive file search function in C

I'm trying to make a program that is supposed to : * Search for a specific file by going into a directory and its subdirectories (recursively) But I kinda messed up, I have a stack overflow. Here's the function that causes me troubles: BOOL LoopThroughDirectories(LPTSTR fileName) { //Searching for files [...] read more
c
recursion
winapi
0votes
1answer

C++ Karatsuba long integer algorithm error

i got this error = Unhandled exception at 0x7A5B1088 (ucrtbased.dll) in algorthmprokect1.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x006B2FF4). occurred i don't know where i have a mistake i am using strings because i need to get integers from file and they has 1000 digits Update:After Debugging i realized that else [...] read more
c++
algorithm
0votes
1answer

sklearn cosine_similarity memory error after PCA

I have a documents-terms matrix with 9000 rows (documents) and 1810 cols (terms). I have applied PCA for dimensionality reduction, that outputs, let's say a 9000x200 matrix. My purpose is clustering on this data, and the next step for me is to apply some distance metrics, like cosine_similarity from sklearn. [...] read more
python
scikit-learn
sklearn-pandas
cosine-similarity
0votes
0answers

How do I convert an XML file to JSON without overflowing the stack?

I have a huge XML file almost 500MB size. I want to process it and convert it to JSON format with Rust. I have this code but it says : > thread 'main' has overflowed its stack error: process didn't exit > successfully: target\debug\epg_to_json_to_db.exe (exit code: 0xc00000fd, > STATUS_STACK_OVERFLOW) This [...] read more
json
xml
rust
0votes
1answer

How to catch left click event for coordinates MFC Picture Control

I am trying to follow an example to register click events so I can grab coordinates for my mandelbrot experiment. I am trying to get the x and y coordinates of the output picture box image that is created when the mandelbrot is compiled. The issue is that it does [...] read more
c++
mfc
0votes
0answers

Why declaration of struct array emp[9999] got error?

I am trying to declare the struct array but it show error. Error message: Unhandled exception at 0x013F28F9 in assignment 2.0.exe: 0xC00000FD: Stack overflow (parameters: 0x00000000, 0x004B2000). #include <iostream> #include <fstream> #include<string> using namespace std; struct emp { int empid; int dob; int height; int weight; int years_working; int salary; [...] read more
c++
0votes
2answers

Is there a way to make an array of size 530000 in C?

I am currently simulating a sample of atoms interacting with each other. In order to do that I am calculating all the relative distances between them in order to calculate the forces. Now, for post analysis I need to have for each time step an array containing all the relative [...] read more
c
arrays
size
0votes
1answer

Visual Studio - Android - GDB exited unexpectedly with exit code -1073741571 (0xC00000FD) : While Loading Symbols

I have a C++ gradle app set up in Visual Studio 2019 Community Edition targeting Android. I'm using NDK 20 (the latest version in Microsoft's android sdk repo). This app is composed of several .so libraries (SDL2, SDL2_image, SDL2_ttf, WolfSSL, MyGameCode, MyGameLibrary, MiscellaneousExternalDependencies.a) and all seems to compile and run [...] read more
c++
visual-studio
android-ndk
gdb
clang
0votes
2answers

Sort vector of object receive stack overflow exception c++

I'm trying to sort a vector of Student objects by an attribute: class Student { private: std::string nume; int an; std::list<Curs> cursuri; ... public: Student(); Student(std::string nume, int an); virtual ~Student(); ... }; with these sorting method comparatator: bool Student::sortByMedie(const Student& a, const Student& b) { return a.medie < b.medie; [...] read more
c++
sorting
vector
stl
std
0votes
1answer

Replicating `std::thread::spawn` results in stack overflow

DESCRIPTION I am trying to spawn threads on my Windows machine in a #[no_std] crate, but I am running into problems in the __chkstk function. To start off I created a crate with std and tried to find the places that are responsible for spawning threads in libstd. LIBSTD CODE [...] read more
multithreading
rust
0votes
0answers

Implement number of digits recursively in Python

I have this code to print the numbers based on the number of digits inputted (for example printNum1(2) will output 10-99, printNum1(3) will output 100-999, printNum1(4) will output 1000-9999) iteratively in python: from time import time def printNum1(n): start = time() y = 10 ** n x = y//10 for [...] read more
python
recursion
0votes
0answers

Error in the problem of finding the maximum in the segment tree

When compiling the program throws this error: > Unhandled exception at 0x000418B9 в laba6c++.exe: 0xC00000FD: Stack overflow > (characteristic: 0x00000001, 0x00402FFC). I think the error is due to too many recursions of the maxim function, but I don't know how to fix it #include <iostream> #include <cstdio> #include <vector> const [...] read more
c++
recursion
stack-overflow
segment-tree
0votes
1answer

Why only codeblocks give me return error(0xc00000FD)?

When I compile the program with Codeblocks (GNU gcc compiler) it gives me this error: Process returned -1073741571 (0xC00000FD) I tried it without the binary search and it works, but I can't understand why when I insert the binary search it gives me this error. But if I compile it [...] read more
c
return
return-value
-1votes
0answers

Code blocks compiler error. Matrix of a[101][101] works, but when increasing to a[1001][1001] it throws an error

The compiler error is : Process returned -1073741571 (0xC00000FD) execution time : 0.997 s Press any key to continue. My code: #include <iostream> using namespace std; int main() { int n,m,a[1001][1001]; cin>>n>>m; for(int i = 1; i<=n; ++i) for(int j = 1; j<=m; ++j) cin>>a[i][j]; int s = 0; for(int [...] read more
c++
compiler-construction
codeblocks
-1votes
3answers

What is the bug in this Python program?

What is the bug in the following source code? I am unable to find it myself. ShapeBase.py from abc import ABC class ShapeBase(ABC): def __init__(self, idd: str): self.id_: str = idd self.cx_: float = 0.0 self.cy_: float = 0.0 @property def cx_(self) -> float: return self.cx_ @cx_.setter def cx_(self, cx: [...] read more
python
debugging
pycharm
-1votes
1answer

N-TH root of number in C++

I'm trying to calculate the n-root of a number in c++ using pow, so I tried to do as follow #include <cmath.h> ... double n_root_of_a = pow(a,1.0/n); ... but this isn't working it gives me the following execution error "Process returned -1073741571 (0xC00000FD)". but if I run the same code [...] read more
c++
mingw
pow
-1votes
2answers

-1073741571 (0xC00000FD) error in code block c++

I need to generate a large number of random alphanumeric string, it is okay with the size below 10000, but when I tried to create the size 100,000, it returned the error -1073741571 (0xC00000FD) and my code won't run. Please tell me what is the error and how to solve [...] read more
c++
-1votes
1answer

Does anyone know what caused this error?

I made a automail tool in c# for my employer. But it crashed over night. If you need some code or anything please ask and I will provide. The error: http://puu.sh/fxyuP/ac05065f22.png http://puu.sh/fxywx/7008f782ef.png puu.sh/fxyyn/f47b67d6d4.png the event log general error: Faulting application name: DSVODBC APP.exe, version: 1.0.0.0, time stamp: 0x54d34893 Faulting module [...] read more
c#
crash
-1votes
2answers

Quick Sort algorithm getthing an exception thrown (partially solved)

My issue is that I get an exception thrown when my array size becomes too big: "Unhandled exception at 0x00F22A67 in lab.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x00682F60)." It was recommended that I use vectors instead of arrays, but this did not solve the issue. I added a break and [...] read more
c++
arrays
sorting
quicksort
sizeof
-1votes
1answer

[CPP]Why the active solution configuration "debug" in Visual Studio can make some error?

Excuse me, my primary language isn`t English. I wrote a recursion function to resolve the "Queens Problem". int* Queen_Recursion(int n,int nowRow = 1, int nowColumn = 1, int* map = nullptr) { if (map == nullptr) map = new int[n + 1]{0}; if (nowRow > n) { std::cout << "No." [...] read more
c++
visual-studio
visual-studio-2019
-1votes
1answer

C++ Filling 2 arrays

Program needs to collect string "name" and double "speed" from user. User also defines amount of data to input. It must then sort data from fastest to slowest with corresponding "name" listed with its speed. I have successfully managed the program to 'get' user input for amount of data (size [...] read more
c++
arrays
-2votes
0answers

Primitive Calculator

for the following problem: "You are given a primitive calculator that can perform the following three operations with the current number 𝑥: multiply 𝑥 by 2, multiply 𝑥 by 3, or add 1 to 𝑥. Your goal is given a positive integer 𝑛, find the minimum number of operations needed [...] read more
c++
visual-studio-2012
dynamic-programming
-2votes
1answer

Segmentation fault while creating multiple threads in C

I am trying to create 1000000+ threads and have them add and remove elements from a queue. The queue has a size of 10 elements and when it's full and wants to add an element it waits for a signal from a Condition, same thing goes for when it's empty [...] read more
c
multithreading
parallel-processing
segmentation-fault
pthreads
-2votes
0answers

Stack overflow (parameters: 0x00000001, 0x00A02FAC)

Unhandled exception at 0x007A9E89 in Project1.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x00A02FAC). the main idea from the code is creating a txt file that has a 100,000 number why I'm doing this it's project that I have to do, after the debug retch this function long int partition(long int T[], [...] read more
c++
-2votes
1answer

Why does my recursive merge sort algorithm result in a stack overflow?

A recursive call while implementing merge sort throws an error. I tried using debug macros to see if its some memory restriction without luck. fn merge<T: PartialOrd>(mut v: Vec<T>) -> Vec<T> { if v.len() < 1 { return v; } let mut res = Vec::with_capacity(v.len()); let b = v.split_off(v.len() / [...] read more
algorithm
sorting
rust
-2votes
1answer

Implementing DFS, works fine with shorter inputs but, throw segmentation error with larger inputs

This code that I am writing is to detect SCCs in a graph, it is the first programming assignment of "stanford graphs and data structures" but, with large inputs it throws exception errors. I have tried it with different IDEs and all the time I get segmentation fault with larger [...] read more
c++
algorithm
data-structures
array-algorithms
-2votes
1answer

How to prevent stack overflow when using array in C++?

I'm writing a program in C++ that calls a function in each iteration of a for-loop and stores the "results" in a .csv file. The function takes in 18 parameters and stores the results in an array. When I run the program with 10,000 iterations it works fine. However, when [...] read more
c++
arrays
for-loop
memory
stack-overflow
-2votes
1answer

Overloading <= operator but program ends with exit code -1073741571 (0xC00000FD)

I am trying to overload the <= operator but the program has an error > Process finished with exit code -1073741571 (0xC00000FD) op.h bool operator<=(const Date& d1, const Date& d2) { return d1 <= d2; } main.cpp cout << "Checking <=" << endl; assert(Date(1,1,2000) <= Date(2,1,2000)); assert(!(Date(2,1,2000) <= Date(1,1,2000))); assert(Date(2,1,2000) [...] read more
c++
c++11
operator-overloading
-3votes
2answers

Strcpy does not work correctly with char arrays

I get the following output when I run the code below: Matrikel: 01717 Process finished with exit code -1073741571 (0xC00000FD) Code: char infos[255]; char matrikelnr[5]; sprintf(matrikelnr, "%d", s->matnr); size_t n = strlen(matrikelnr); while (n != 5) { memmove(matrikelnr + 1, matrikelnr, 5); matrikelnr[0] = '0'; n = strlen(matrikelnr); } printf("Matrikel: [...] read more
arrays
c
char
strcpy
-3votes
1answer

How to fix "An unrecoverable stack overflow has occurred... Java returned: -1073741819" error on java?

While working on a Java Swing project I encountered the following runtime error "An unrecoverable stack overflow has occurred... Java returned: -1073741819". Project environment: Netbeans 12, jdk1.8.0_211, poi 4.1 on windows 10 I cannot reproduce this error. An unrecoverable stack overflow has occurred. # # A fatal error has been [...] read more
java
java-runtime-compiler
-3votes
1answer

Python parser.parse combined with if statement

I am working on a calculator project, I am using yacc as a parser and as I have 4 different values to parse I wanted to check what was just parsed. I have a strong feeling it won't work but I don't know what to use else. I Only get [...] read more
python
python-3.x
parsing
if-statement
-3votes
1answer

Avoiding exit code -1073741571 (0xc00000fd) when I need to run a sim calling functions many times over

so I just programmed in pycharm a sort of blackjack simulation for card counting. The goal is to run many many hands of blackjack using perfect basic strategy and card counting and seeing based off the users bankroll and bet spread what their risk of losing all their money is. [...] read more
python

Comments

Leave a comment

(plain text only)

Sources

  1. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  2. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0