Windows error 0x0000013B, 315

Detailed Error Information

INVALID_TOKEN[1]

MessageThe token representing the data is invalid.
Declared inwinerror.h

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

PASSIVE_INTERRUPT_ERROR[2]

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

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 Code315 (0x013b)

Questions

16votes
1answer

Compiler Bug when using ?. resulting in a Bad Image that fails PEVerify

I stumbled across something odd: I got a BadImageFormatException without knowing what image (assembly) it could possibly refer to. I reduced the solution so that it consists only of a single project with no dependencies: enter image description here [https://i.stack.imgur.com/BjWNV.png] As you can see, it only uses System (and mscorlib), [...] read more
c#
visual-studio-2015
roslyn
c#-6.0
3votes
0answers

ABI cross-checking

I am looking for some way to cross-check the compatability of two differing libraries, which should share the same base symbols. So, I have libCommon, libA and libB and my application. libB uses symbols from libCommon as does libA. I compile both into my application, and then find that the [...] read more
c++
mingw
abi

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