Windows error 0x000001C4, 452

Detailed Error Information

CAPAUTHZ_NOT_PROVISIONED[1]

MessageThe application has not been provisioned.
Declared inwinerror.h

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

DRIVER_VERIFIER_DETECTED_VIOLATION_LIVEDUMP[2]

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

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 Code452 (0x01c4)

Questions

2votes
2answers

Docker randomly restarts all services

We currently experience intermittent and random restarts of all our Docker swarm services (in production). This behaviour started a couple days ago and so far our services have restarted about 6 times. When I check /var/log/messages we see the following at the moment the services are being restarted Jul 18 [...] read more
docker
docker-swarm
2votes
1answer

Switch case's jump table position within code on ARM

In C/C++ a switch statement can be lowered by the compiler to a jump table. I noticed a difference of placement of the jump table between ARM and x86. X86 For x86 (And x86_64) the jump table is often placed outside of the function (e.g. .rodata) 4005e0: 48 8b 45 [...] read more
c
arm
reverse-engineering
compiler-optimization
jump-table

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