Windows error 0x0000012D, 301

Detailed Error Information

INVALID_OPLOCK_PROTOCOL[1]

MessageAn invalid oplock acknowledgment was received by the system.
Declared inwinerror.h

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

VOLSNAP_OVERLAPPED_TABLE_ACCESS[2]

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

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 Code301 (0x012d)

Questions

3votes
1answer

passing a struct to a IDispatch method

In a third party COM Module I have to pass a struct to a Method. The important parts of the IDL definition look like this: interface ITheirInterface : IDispatch { [id(0x0000012d)] HRESULT TheirMethod([in] TheirStruct Attributes); }; struct TheirStruct { BSTR TheirFieldA; BSTR TheirFieldB; } TheirStruct; I how do I call [...] read more
windows
visual-c++
com
atl
idispatch
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
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
0votes
3answers

Weird bug with WndProc and DispatchMessage. Member Functions don't exist?

So a bit of a weird bug going on when getting a WM_KEYDOWN msg in my Window class. I have a Global WndProc function that determines which window instance it is and sends the message to it's own local WndProc function. //Every Windows Message will hit this function. LRESULT CALLBACK [...] read more
c++
winapi

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