Windows error 0x00000145, 325

Detailed Error Information

SECURE_BOOT_VIOLATION[1]

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

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 Code325 (0x0145)

Questions

2votes
2answers

Converting a list of strings to list of int in pandas

after reading CSV file, I have a column that has a string of comma-separated hexadecimal values. For e.g. "0x00000034,0x0000008a,0x00000145". I want to convert this column to a list of integers. I am able to split and convert to a list of integers using below code: for index, row in df.iterrows(): [...] read more
python
pandas
2votes
1answer

Statically inferring symbol types in C

As part of a regression test, I want to use static analysis to ensure that a C symbol defined in a header is of the same type as the base type of a typedef, which is also defined in the same header. Given that I am using gcc (along with [...] read more
c
gcc
types
static-analysis
dwarf

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