Windows error 0x000000CC, 204

Detailed Error Information

PAGE_FAULT_IN_FREED_SPECIAL_POOL[1]

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

HRESULT analysis[2]

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[2][3]
DescriptionThe default facility code.[2][3]
Error Code204 (0x00cc)

Questions

9votes
4answers

Can I use libcurls CURLOPT_WRITEFUNCTION with a C++11 lambda expression?

I tried to use a C++11 lambda expression with CURLOPT_WRITEFUNCTION, but the program crashes at runtime with an access violation. I'm not sure how to look further into this due to lack of C++11 knowledge, but maybe someone else has an idea how to make this work. The function: #ifndef [...] read more
c++
lambda
c++11
libcurl
5votes
0answers

How to diagnose a crash that appears to be internal to WebCore (Thread 2, SIGSEGV)

Hello esteemed SO'ers, A crash recently popped up that's perplexing me. It occurs on Thread 2, appears to be internal to WebCore, is Exception Type SIGSEGV and Exception Code SEGV_ACCERR. Full crash log below. The App uses UIWebViews throughout. The main WebView displays roughly 30 images that reside on disk, [...] read more
ios
uiwebview
crash
webkit
segmentation-fault
4votes
0answers

How to get right MIPS libc toolchain for embedded device

I've run into a problem (repetitively) with various company's' embedded linux products where GPL source code from them does not match what is actually running on a system. It's "close", but not quite right, especially with respect to the standard C library they use. Isn't that a violation of the [...] read more
linux
gcc
embedded
cross-compiling
libc
3votes
1answer

RStudio crashes when reading mzML file, R terminal doesn't

I've got a bunch of data in the mass-spec mzML file format. Using the latest version of R (v3.3.2), and the latest daily of RStudio (v1.1.47), reading in an mzML file crashes R in RStudio, but not R in the terminal. library(mzR) library(msdata) mzxml <- system.file("threonine/threonine_i2_e35_pH_tree.mzXML", package = "msdata") aa [...] read more
r
rstudio
2votes
1answer

unknown arm linux kernel image format

I have a ARM linux kernel image file. but I am not sure exactly what kind of format it is... the 'file' command tells me that it is pure data. first, I thought it is vmlinuz and tried to decompress it. I searched 'gzip' header signature and uncompressed from there. [...] read more
linux
kernel
arm
2votes
1answer

Unable to pass a string from VBA (Excel) to my COM object

I am experimenting with creating a COM interface for my application in order to allow eg. VBA to drive certain parts of my application. I have my COM library up and running and installed, even to the part where a routine called in Excel can be debugged in the Delphi [...] read more
vba
delphi
com
2votes
1answer

Application crash due to dereference garbage pointer

I am seeing few random crashes in my iPod application with following message common in all the crash reports (though they have different thread traces). The crash is not reproducible - it occurs pretty randomly. Attempted to dereference garbage pointer I am also attaching a sample crash report. Please suggest [...] read more
ios
debugging
crash
exc-bad-access
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
0votes
0answers

Confused about Y86 assembly code memory storage

I've been using an online compiler but I'm not sure why the memory is being split the way it is It's coming out as: 00a8 0000001d 00ac 01000000 when 00a8 should just hold the whole hex value as 0000011d. .pos 0 irmovl $1, %eax # int i = 1 irmovl [...] read more
memory
y86
0votes
0answers

Loop keeps on crashing without an error code

I have a loop that copies a value from a source range and inserts it into a calculator and that triggers a worksheet change event that updates the calculator and a report. The code then copies and pastes the results into a results column. After the result is recorded, it [...] read more
excel
vba
0votes
0answers

Saving memory allocated pointer matrix in binary file

I got a sort of database for a library with info about books and i need to dynamically allocate space for it, read user input, save it in an binary file and them retreat it.I successfully saved the qtd variable alone, but the program crashes when i try to save [...] read more
c
pointers
malloc
binaryfiles
0votes
2answers

Java application crash when uses icepdf library

In my application I use the library icepdf. when you create a class of applications is broken and creates a log file. Help in solving problems Log file: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d034bee, pid=3304, tid=3364 # [...] read more
java
jvm
java-native-interface
jvm-crash
icepdf

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0