Windows error 0x0000005F, 95

Detailed Error Information

SECURITY_INITIALIZATION_FAILED[1]

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

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 Code95 (0x005f)

Questions

4votes
2answers

Investigating Memory Leak

We have a slow memory leak in our application and I've already gone through the following steps in trying to analyize the cause for the leak: 1. Enabling user mode stack trace database in GFlags 2. In Windbg, typing the following command: !heap -stat -h 1250000 (where 1250000 is the [...] read more
windows
debugging
memory-management
memory-leaks
windbg
3votes
1answer

Projection matrix causing inaccuracy in clip-space depth calculation?

Currently working with SlimDX's Direct3D 11 bindings and having significant difficulty with my shader, the source of which follows: /* * * * * * * * * * PARAM STRUCTS * * * * * * * * * */ struct VSPointIn { float3 pos : POSITION; float4 color [...] read more
c#
directx
direct3d
hlsl
slimdx
2votes
0answers

Explain if any memory leak associated with oleaut32!APP_DATA::AllocCachedMem and ntdll!RtlAllocateHeap in windbg stack trace which appears repeatedly

I am trying to identify memory leak in a process(C++ Application) I am using Windbg tool to identify the memory leak. 0:000> !heap -stat -h 02e10000 heap @ 02e10000 group-by: TOTSIZE max-display: 20 size #blocks total ( %) (percent of total busy bytes) 40 95857 - 25615c0 (60.70) 953130 1 [...] read more
c++
memory-leaks
1vote
0answers

Uncorrectable medium error in 3 drives of the LSI-9260-16i RAID5 system

We have a storage machine (file server) with a LSI Megaraid 9260-16i RAID system, and 15 hard drives configured as RAID5 plus one off-lined hard drive which is going to be replaced. Each hard drive is a 4TB SATA3 disk. Recently we found the following the same "Patrol Read" error [...] read more
megaraid
1vote
1answer

Word for Mac crashes on call from Javascript API

Executing the following code is causing Office to crash on OS X 10.11.6 Word.run(function (context) { var docProps = context.document.properties; context.load(docProps); return context.sync().then(function () { console.log("ok")'; }); }); This gives the following error message in Office > Microsoft Error Reporting log version: 2.0 > > Error Signature: Exception: EXC_BAD_ACCESS ExceptionEnumString: [...] read more
office-js
0votes
0answers

Uncorrectable medium error in 3 drives of the LSI-9260-16i RAID5 system

We have a storage machine (file server) with a LSI Megaraid 9260-16i RAID system, and 15 hard drives configured as RAID5 plus one spared hard drive. Each hard drive is a 4TB SATA3 disk. Recently we found the following the same "Patrol Read" error event logs happened in 3 of [...] read more
raid
0votes
2answers

How to turn on LED on stm32 board using assembly language that generated by llvm?

My English skill is poor because I'm not a native English speaker. Please understand. I compiled some test code that operating alright in IAR with LLVM infra but the generated code was not operated on my test board. Detail are as follows. TEST GOAL I want to see operating the [...] read more
makefile
llvm
cortex-m3
segger-jlink
stm32l152

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