Windows error 0x0000001A, 26

Detailed Error Information

NOT_DOS_DISK[1]

MessageThe specified disk or diskette cannot be accessed.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007001A.

MEMORY_MANAGEMENT[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x1A: MEMORY_MANAGEMENT.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code26 (0x001a)

Questions

10votes
1answer

Understand U-Boot memory footprint

I don't understand what is happening in RAM when loading U-Boot. I'm working on a Xilinx Zynq ZC702 evaluation kit and I'm trying to load a Linux kernel on it using U-Boot. So I used the Xilinx tool Vivado and the SDK to generate a BOOT.bin file that is written [...] read more
linux-kernel
arm
u-boot
zynq
8votes
0answers

android error dynamically loading libc++.so native library

I am trying to build a proof-of-concept android application which uses OpenSSH code to establish a SSH session with a server. For that I am using android sources to build the required libraries and then pull them up to an AndroidStudio native project where everything should be packed and installed [...] read more
android
c++
java-native-interface
native
8votes
3answers

Android NDK produce unreasonable big binaries, how to optimize .so size?

I have notice that Android NDK (r6b in my case) produce unreasonable big resulting .so files. For example, in my case I have ~150-200 lines of C++ code (6 native methods and 3 C++ simplest classes) and this native code produce 60kb (!) .so with enabled exceptions and RTTI or [...] read more
android
android-ndk
6votes
2answers

SO_ATTACH_REUSEPORT_CBPF socket option unexpected behavior

I am trying use a port from two applications and have each of them receive the packet from a different set of IP addresses. In order to achieve this, I use the SO_REUSEPORT and SO_ATTACH_REUSEPORT_CBPF socket options. My code is as follows: parentfd = socket(AF_INET, SOCK_STREAM, 0); if (parentfd < [...] read more
linux
sockets
packet-capture
6votes
2answers

Cross-Compiled GNU ARM (BeagleBoneBlack) from Windows. Runtime Error on *.elf: "No such file or directory"

I'm in the (very) early stages of developing a UAV flight controller on a BeagleBone Black. I should mention that I'm quite the novice when it comes to the BBB, Linux and embedded systems.My academic focus has been on control theory - this is my first attempt at a practical [...] read more
c++
linux
cross-compiling
beagleboneblack
toolchain
5votes
4answers

gcc arm executable "no such file orr directory", wrong dynamic lib

I am trying to make a usable setup for gcc-linaro-arm-linux-gnueabihf-4.8-2013.11 on windows. Something happens at dynamic link: $(CC)-gcc -o test main.c -Wall -lc The program compiles fine, but when deployed to ARM shows: "No such file or directory" Searching the issue, seems that static build works but executable is huge: [...] read more
gcc
5votes
1answer

SQLite crashes in sqlite3DbMallocRaw

We are seeing this crash report very frequently in our iOS-targeted database framework. Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000001a Triggered by Thread: 3 Thread 3 name: Thread 3 Crashed: 0 libsqlite3.dylib 0x3a1fb150 sqlite3DbMallocRaw + 60 (sqlite3.c:19398) 1 libsqlite3.dylib 0x3a1cf950 yy_reduce + 19164 (sqlite3.c:19499) 2 libsqlite3.dylib 0x3a1cadbc sqlite3Parser [...] read more
ios
database
sqlite
4votes
1answer

Suddenly getting bsod memory management issue after Updating to windows 10

I recently upgraded to windows 10, most things seemd to work fine, aside from a few issues here and there which was easily resolved. Thou i had to reinstall the Nvivida Driver for the graphic card. (it was trying to run from the integrated motherbord graphic). However i've suddenly been [...] read more
memory
bsod
windows-10
4votes
6answers

Android's GNU STL shared library can't be found with System.loadLibrary

I've compiled a shared library with android-cmake and the NDK against libstdc++, and as per android-ndk-r7/docs/CPLUSPLUS-SUPPORT.html I'm trying to load gnustl_shared before loading my library: static { System.loadLibrary("gnustl_shared"); System.loadLibrary("MathTest"); } I can see this being done for instance here but I get an exception: 01-03 20:02:42.307: E/AndroidRuntime(569): Caused by: java.lang.UnsatisfiedLinkError: [...] read more
android
stl
android-ndk
4votes
4answers

Need help debugging why a shared library fails to load. Android NDK

I am trying to load a shared library using: System.loadLibrary("sharedC"); sharedC is dependent on 2 other shared libraries sharedA and sharedB, all three were made using the standalone toolchain and are included as prebuilt shared libraries. I load sharedA and sharedB before sharedC and I know of no other dependencies. [...] read more
android
android-ndk
shared-libraries
3votes
1answer

Windows 10 reboots without blue screen or crash dump

UPDATE: Eight and a half months later, the problem persists, but now happens every time a VM is started, whether from BlueStacks, Vagrant, or just starting up from the VirtualBox console. The stop code varies. Over the last few times I've gotten: * APC_INDEX_MISMATCH * DRIVER_OVERRAN_STACK_BUFFER * INTERRUPT_EXCEPTION_NOT_HANDLED * SYSTEM_SERVICE_EXCEPTION [...] read more
windows-10
memory
bsod
crash
3votes
1answer

app crashes in review, but not crash in adhoc distribution

I've tested my app on various devices with iOS 5, 5.1, and 6.0.1, without crashing. I've also successfully tested it with the Xcode debugger, and via ad-hoc distribution on the same devices. Yet, it's rejected by Apple: > We found that your app failed to launch on iPad running iOS [...] read more
ios
crash-reports
2votes
1answer

BSOD Win 7 0x1a MEMORY_MANAGEMENT (ntoskrnl.exe): Could it be a faulty HDD cloned image?

Some years ago I had a failing HDD that, in its dying breath, had a cloned image of it installed onto a new HDD. The problem is that the old HDD wasn't working anymore in the end and some data (I think less than 100MB, out of 250GB) was irretrievably [...] read more
windows-7
hard-drive
bsod
disk-image
2votes
0answers

Android NDK: Call to System.loadLibrary Results in SIGSEGV Code=1

I have a massive C/C++ library that I'm trying to use through JNI for an Android project. It's comprised of several classes that were originally written for MFC and we've ported them over for execution on the Android environment. The library builds fine (at least according to ndk-build). The size [...] read more
c++
android-ndk
java-native-interface
segmentation-fault
loadlibrary
2votes
0answers

NDK, Android MK, how create library without FULL dependency path

My android.mk: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := chelper LOCAL_C_INCLUDES += $(LOCAL_PATH)/ \ LOCAL_SRC_FILES := helper.cpp \ LOCAL_SHARED_LIBRARIES = mymodule LOCAL_LDLIBS := -llog include $(BUILD_SHARED_LIBRARY) ####################################### include $(CLEAR_VARS) LOCAL_MODULE := test #LOCAL_LDFLAGS += -Wl,-rpath -Wl,/data/local/tmp LOCAL_C_INCLUDES += $(LOCAL_PATH)/ LOCAL_SRC_FILES := test.c LOCAL_SHARED_LIBRARIES := chelper include $(BUILD_EXECUTABLE) $(call import-module,mymodule) [...] read more
android
android-ndk
ld
2votes
0answers

cross compilation from ubuntu to Raspberry Pi error: undefined symbol

i'm running Qt Creator 3.0.1 (Based on Qt 5.2.1 (GCC 4.8.2, 64 bit)) on Ubuntu 14.4 64bit on VirtualBox on Windows 7 64bit I'm trying to cross compile to Raspberry Pi and run very simple program: MainWindow.h: #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class [...] read more
c++
qt
raspberry-pi
cross-platform
cross-compiling
2votes
2answers

C Returned char from GetSaveFileName() contains null characters

I'm using the following code to get the filepath to save to for use with tinyxml2: OPENFILENAME ofn; char szFileName[MAX_PATH] = ""; ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = sizeof(ofn); ofn.hwndOwner = NULL; ofn.lpstrFilter = (LPCWSTR)L"XML Files (*.xml)\0*.xml\0All Files (*.*)\0*.*\0"; ofn.lpstrFile = (LPWSTR)szFileName; ofn.lpstrFile[0] = '\0'; ofn.nMaxFile = MAX_PATH; ofn.Flags = OFN_EXPLORER | [...] read more
c++
char
savefiledialog
1vote
2answers

ntoskrnl.exe BSOD Windows 10

Already did a memtest and prime95 which passed. Here's the dump: ================================================== Dump File : 052216-4781-01.dmp Crash Time : 5/22/2016 9:03:08 PM Bug Check String : MEMORY_MANAGEMENT Bug Check Code : 0x0000001a Parameter 1 : 00000000`00041792 Parameter 2 : fffff680`0009b098 Parameter 3 : 00002000`00000000 Parameter 4 : 00000000`00000000 Caused By [...] read more
windows-10
bsod
ntoskrnl.exe
1vote
0answers

Frequent BSoD's With Varying Errors

I have just recently finished building my computer and have had numerous problems with BSoD's. I have been getting errors about Memory_Corruption, Critical_Structure_Corruption, and IRQL_Not_Less_Or_Equal on Windows 10. Many websites have led me to believe that my RAM is at fault, but after testing with Memtest86 I found that was [...] read more
windows-10
memory
drivers
crash
bsod
1vote
1answer

Blue Screen of Death - From the deep levels of hell

I have the worst BSOD I have ever seen. The biggest problem here is that it's intermittent. The BSOD happens a couple times per day The system is totally fine in between. There is no specific event or task that triggers it, seems to be completely random. The error, driver, [...] read more
bsod
1vote
0answers

BSOD that started today: MEMORY_MANAGEMENT, 0x0000001A and 0x0000001E

first of all, this is my system: * MOBO Gigabyte G1 Sniper M3. * Intel i5 2310. * Gigabyte GTX 650 Ti Boost. * 4 GB of RAM 1333, Kingston. * PSU Corsair TX550M. * Windows 7 Ultimate 64 bits. Ok, to the issue. Since today, I have been having [...] read more
windows-7
windows
memory
bsod
memtest86+
1vote
3answers

Toshiba Satellite L555D BSOD

I have this Toshiba Satellite L555D that keeps randomly blue screening even after a clean install of Windows 7. I have also tried runnig a chkdsk and a SFC scan and no errors were found. I have also tried switching to different RAM sticks and the same problems keep showing [...] read more
bsod
1vote
1answer

Multiple BSOD Windows 7

I'm using Windows 7 and I've gotten multiple BSOD errors when browsing with chrome or watching videos. I've updated my integrated graphics card driver but it didn't solve the problem. I've run Memtest86+(12 passes) - everything was OK, I've also tested the HDDs - no problem, too. I've disabled GPU [...] read more
windows-7
google-chrome
memory
bsod
1vote
1answer

Windows 7 Ultimate, death blue screen with new kingston memory

My system operations (Windows 7 Ultimate), was working perfectly with 1x2G (RAM DDR2) by months, but I bought new 4GB (2x2GB RAM DDR2) by kingston. Retired my old memory 2gb and install the new 2x2gb on slot 3 and 4 of my motherboard (ECS A780GM-A). The user manual of motherboard [...] read more
windows-7
memory
ddr2
1vote
3answers

Disassemble instruction set for 8051 microcontroller

I have the following hex opcode sequence for a 8051 microcontroller 785679107A247BFD7C347D407E51745568F869F96AFA6BFB6CFC6DFD6EFE I found this repo that converts hex to instruction sequences https://github.com/anarcheuz/8051-disassembler. Using that I was able to get the following assembly instructions x00000000: 37 38 MOV 38 (R0,#immed) 0x00000002: 35 ANL A,@R0 0x00000004: 37 39 MOV 39 (R1,#immed) [...] read more
assembly
reverse-engineering
microcontroller
disassembly
8051
1vote
0answers

Nativescript - iOS build fails with error code 2

I have been trying to build the iOS version using Nativescript sidekick for two days now without luck. It used to build just fine in the past. Environment information 1. Sidekick Version: 1.19.2-v.2019.11.18.2 (latest) 2. NativeScript CLI version: 6.2.2 3. CLI extension nativescript-cloud version: 1.19.3 4. CLI extension nativescript-starter-kits version: [...] read more
ios
nativescript
nativescript-angular
1vote
1answer

Linking error while cross compiling Qt5 for Beaglebone

Dear stackoverflow community. I'm cross-compiling Qt 5.12 for my Beaglebone Black with EGL support. The host OS is Ubuntu 18.04.1 LTS (x64) running in a VM. I have installed any possible dependcies (I could find in different posts) on the target (and some on the host as well) and copied [...] read more
linker
qt5
cross-compiling
beagleboneblack
1vote
1answer

Why I don't receive any packets using BPF with udp socket?

GOAL: write a BPF filter which allow just UDP packets from a specific src address and attach it to and UDP socket. PROBLEM: if I execute the program and I try to send udp packets from a VM which has the correct src IP I don't receive none of them [...] read more
c
sockets
udp
bpf
1vote
1answer

Programming and configuring the U-boot

First of all, this question is related to the creation of embedded Operating System and, to be exact, with Linux Kernel + u-boot + FSBL + device tree + FS compiled to run on an arm A9. Context: After booting this (just created) OS upon a Zynq device (specifically, a [...] read more
linux-kernel
embedded-linux
hardware
u-boot
device-tree
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
1vote
1answer

Cross Compiling GSL for Android

CROSS COMPILING GSL FOR ANDROID I am attempting to cross compile the GNU Scientific Library (GSL) for Android 4.1 using Autotools. My build and host are as follows: build="i386-apple-darwin10.8.0" host="arm-linux-androideabi" Autotools versions: GNU Automake version 1.11.3 GNU Autoconf version 2.68 GNU Libtool version 2.4.2 My goal is to compile an [...] read more
android
android-ndk
cross-compiling
elf
gsl
1vote
2answers

Insert a new section to a binary file?

I try to coding a program to insert a empty (as the first step) phdr struct to any elf binary, so I coding like below: cat add_phdr.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <elf.h> #include <sys/mman.h> #include <stddef.h> static void calc_dyntables(void [...] read more
c
linux
nasm
elf
1vote
2answers

JBoss / HotSpot JVM crashing

We have a web app built on Jboss that has been in production for several years; for the last 18 months it has never gone down. However, in the last two days, the jvm has crashed 4 times. When the JVM crashes, we get a error report that I am [...] read more
jboss
jvm
crash-reports
1vote
2answers

Cross-compiling for Android

I'm trying to cross-compile dropbear for android. The files appear to compile find, but when executed give "program : not found." I did a find and the libraries marked NEEDED appear to be located in the cross-compile environment. I have compiled other programs with this toolchain. arm-none-linux-gnueabi-readelf -d dropbear Dynamic [...] read more
android
0votes
1answer

BSOD bugcheck event viewer output

My computer just booted from a memory management BSOD and I found this in the event viewer: > The computer has rebooted from a bugcheck. The bugcheck was: 0x0000001a > (0x0000000000006000, 0xffffe401f79883f0, 0xffffffffc0000225, > 0x0000000000000000). A dump was saved in: C:\WINDOWS\MEMORY.DMP. Report Id: > c840a976-1092-4dc8-b9fe-7906ebdbba7c. Is this good, bad, fixable, [...] read more
bsod
0votes
3answers

What is causing this Windows 10 blue screen (MEMORY_MANAGEMENT ntoskrnl.exe)?

I'm getting the following blue screen in Windows 10: ================================================== Dump File : 010216-40531-01.dmp Crash Time : 1/2/2016 8:13:36 PM Bug Check String : MEMORY_MANAGEMENT Bug Check Code : 0x0000001a Parameter 1 : 00000000`00041201 Parameter 2 : fffff6bf`fcdc6488 Parameter 3 : 20700001`1349e025 Parameter 4 : ffffe001`5a2bf8a0 Caused By Driver : [...] read more
windows-10
bsod
0votes
0answers

Windows 7 BSOD - ntoskrnl.exe MEMORY_MANAGEMENT 0x0000001a

Turned my computer on, went to brush my teeth, came back and it was recovering from a BSOD. Same errors from a couple past BSOD's within the last month. Not sure what could be causing it, help would be much appreciated! Windows 7 Home Premium, NVIDIA GTX 1070, Intel i5-2500, [...] read more
windows-7
windows
bsod
0votes
0answers

How do I find out who is corrupting my memory?

Question: My Windows 8.1 media center is experiencing blue screens. Here's an excerpt from the most recent ones (sorry for the formatting, but superuser does not support nice tables): Date Bug Check Param 1 Caused by Address 2015-05-24 0x00000019 BAD_POOL_HEADER 00000000`00000020 Npfs.SYS+b872 2015-05-23 0x00000019 BAD_POOL_HEADER 00000000`00000020 ntoskrnl.exe+150ca0 2015-05-22 0x0000003b SYSTEM_SERVICE_EXCEPTION [...] read more
windows-8.1
memory
drivers
bsod
0votes
2answers

BSOD and flickering graphics on Windows 7 64bit

I recently purchased a new motherboard (Asus P8 Z68-V Pro) Processor (Intel Core i5 2500K) and 8gb of DDR3 RAM. Since installing these I have had a lot of problems with at first flickering graphics, the screen going black and then coming back and then a BSOD. I've checked temperatures [...] read more
windows-7
graphics-card
power-supply
bsod
hardware-failure
0votes
0answers

Having issues with a Frida gadget on an emulated Android device

I am trying to inject a Frida gadget into an Android App which is already installed on an emulated (MEmu) Android 7.1 rooted system. When I connect to the device using adb, I can see that the files are store here: ASUS_Z01QD:/data/app/com.turtle.foo.bar-1 # ls base.apk lib oat split_config.armeabi_v7a.apk The MEmu [...] read more
android
arm
apk
emulation
frida
0votes
0answers

Instruct GDB to show multiple lines of assembly code

I have establised a conncetion to simulavr and want to debug the startup code of the program stored in an ELF file. But if I use the disassemble command it doesn't show the requested memory: (gdb) set disassemble-next-line on (gdb) si 0x0000001a in __trampolines_start () => 0x0000001a <__trampolines_start+0>: 11 24 [...] read more
gdb
0votes
1answer

ESP32-WROOVER randomly reboot with different reasons

Hardware: Board: ESP32 Dev Module, node32, ttgo Core Installation version: not sure IDE name: Arduino IDE Flash Frequency: 40Mhz PSRAM enabled: not Upload Speed: 115200 Computer OS: Windows 10 Hi, I am working on a project, which is to use GSM to connect MQTT, and send instant data such as [...] read more
arduino
esp32
0votes
1answer

Android App crashes while listing up items for listview

On start of my app, a list of 114 elements is added to a listView displayed on the app's front page. It crashes in the class Spielortadapter, when going through the second element, Distanz/km. The TextView is built up correctly and the data from getDistanz() works correctly, but the setText() [...] read more
java
android-studio
listview
0votes
1answer

mips exception handling beq not working

I am trying to find an exception by comparing the t0 value. I must have something wrong on the hex numbers that i compare the t0 value..do anyone know? sw $v0 save0 mfc0 $t0 $13 srl $t0 $0 2 andi $t0 $t0 0x7c beq $t0 0x00000008 bad_address_load beq $t0 0x0000000a [...] read more
exception
error-handling
exception-handling
mips
0votes
1answer

java.lang.unsatisfiedLinkError lib not found :(failed to link mylib.so)

i've successfully cross compiled a c++ library to the android plateform using the android ndk standalone toolchain. i've created a new android application project into Eclipse with a jni dolder and Android.mk file and when i do an ndk-build the building goes well and it adds mylib.so to libs/armeabi folder [...] read more
android
c++
android-ndk
cross-compiling
0votes
0answers

hard fault inv state part 2

I am unsure how to debug this error. I am getting a hard fault exception that is taking me to an infinite loop for my stm32 eval2 board when I try to use the camera. I think that I am supposed to look at the registers for this problem, but [...] read more
c++
embedded
stm32
keil
0votes
0answers

Windows Phone C# - system.unauthorizedaccessexception

Hellllooooo guys! I have an app for Windows Phone 8. The crash report of my app lists one really big bug that often occurs (crash count is high). The funny (let's say sad) thing is that I can't reproduce this error on my phone or emulator. Can you help me, [...] read more
c#
windows-phone-8
unauthorizedaccessexcepti
0votes
1answer

import error running picam on a raspberry pi

I am trying to run picam on my raspberry pi. Unfortunately I am not getting around the following import error: --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-ae50f21e1c18> in <module>() ----> 1 import picam 2 import time /usr/local/lib/python2.7/dist-packages/picam/__init__.py in <module>() 1 # Copyright (c) 2013 Sean Ashton 2 # Licensed [...] read more
python
raspberry-pi
importerror
-1votes
2answers

Windows 7 blue screen memory error bugcheck 0x0000001a

Here is my system specifications. enter image description here [https://i.stack.imgur.com/ce4Gn.png] Error: > The computer has rebooted from a bugcheck. The bugcheck was: 0x0000001a > (0x0000000000041790, 0xfffffa8003d23de0, 0x000000000000ffff, > 0x0000000000000000). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: > 080515-65988-01. Log > http://pastebin.com/Btxxep58 read more
windows-7
memory
-1votes
1answer

Having several BSOD with different messages in new computer

I've been having several BSOD during the last month or so. I though that they were for some kind of wrong driver or something software related, but tried to update everything to the last version with no results. Additionally, i did multiple hardware tests to the GPU, CPU, RAM memory [...] read more
memory
bsod
memory-management
-1votes
1answer

Convert Hex coding to Bytes

I have this coding: *(uint32_t*) 0xFFFFFFFF8269C07Cull=0; *(uint32_t*) 0xFFFFFFFF8269B56Full=0; And I want to convert this to something similar to: function doWrite(write) { setBase(write); u32[0] = 0x0006b3e9; u32[1] = 0x0f2e6600; u32[2] = 0x0000841f; u32[3] = 0x90000000; u32[4] = 0xbf495741; u32[5] = 0x263ffff8; u32[6] = 0x00000009; u32[7] = 0x413f8b4d; u32[8] = 0x5f41d7ff; u32[9] [...] read more
javascript
-3votes
1answer

Memory addresses

I am workin on Overthewire narnia2(ctf game). Currently I am learning how to use the gdb and I have a simple question. (gdb) x/200x $esp-0xac 0xffffd5a4: 0x08048534 0xffffd5c8 0xf7e5b7d0 0xffffd5c8 0xffffd5b4: 0xf7ffd920 0xf7e5b7d5 0x08048494 0x08048534 0xffffd5c4: 0xffffd5c8 0x6850c031 0x68732f2f 0x69622f68 0xffffd5d4: 0x50e3896e 0x89e18953 0xcd0bb0c2 0x41414180 0xffffd5e4: 0x41414141 0x41414141 0x41414141 0x41414141 [...] read more
c
debugging
gdb
buffer-overflow

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0