Windows error 0x000000C6, 198

Detailed Error Information

INVALID_SEGDPL[1]

MessageThe operating system cannot run %1.
Declared inwinerror.h

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

DRIVER_CAUGHT_MODIFYING_FREED_POOL[2]

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

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 Code198 (0x00c6)

Questions

2votes
1answer

Where to put and how to access static, constant data?

I have some static, constant data that I need to be able to retrieve at runtime. Where do I need to put that data and how can I access it? I've tried putting the data in .text and in .data, and using ld r24, X. I've also tried using GDB's [...] read more
assembly
avr
static-linking
object-files
memory-layout
0votes
1answer

Binary bomb- phase 6

This is the disassembly of phase_6: 08048dbf <phase_6>: 8048dbf: 55 push %ebp 8048dc0: 89 e5 mov %esp,%ebp 8048dc2: 83 ec 18 sub $0x18,%esp 8048dc5: c7 44 24 0c 00 00 00 movl $0x0,0xc(%esp) 8048dcc: 00 8048dcd: c7 44 24 08 0a 00 00 movl $0xa,0x8(%esp) 8048dd4: 00 8048dd5: c7 44 [...] read more
assembly
x86
reverse-engineering

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