Windows error 0x00000051, 81

Detailed Error Information

REGISTRY_ERROR[1]

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

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 Code81 (0x0051)

Questions

8votes
2answers

Windows Authentication works on IIS but not Kestrel / Microsoft.AspNetCore.Authentication.Negotiate (not in Chrome, sometimes in Edge, always in IE)?

I created a new Blazor (Server-side) application with Windows Authentication and run it using IIS Express. It will display a message of "Hello Domain\User!" from the following razor component (...\BlazorApp1\BlazorApp1\Shared\LoginDisplay.razor) on top right. <AuthorizeView> Hello, @context.User.Identity.Name! </AuthorizeView> If running using Kestrel, the message is not shown. So I tried the [...] read more
asp.net
asp.net-core
iis
blazor
kestrel-http-server
3votes
4answers

java.lang.OutOfMemoryError: requested 32756 bytes for ChunkPool::allocate. Out of swap space?

I am working with a java application deployed on an HP server via WebLogic 10.3. Version info: WebLogic Version 10.3 OS Version B.11.23 $ java -version java version "1.6.0.03" Java(TM) SE Runtime Environment (build 1.6.0.03-jinteg_05_feb_2009_11_19-b00) Java HotSpot(TM) Server VM (build 11.0-b16-jre1.6.0.03-rc2, mixed mode) I am getting this java.lang.OutOfMemoryError and the [...] read more
java
jvm
crash
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
2votes
1answer

WinRT W8 Create WebView in C++ and add it to the main view

I'm currently trying to display a webview in a WinRT application (without c#). First, is it possible ? I'm currently trying to do it that way: Windows::UI::Xaml::Controls::WebView^ webView = ref new Windows::UI::Xaml::Controls::WebView(); webView->NavigateToString("http://www.google.com"); But as I want this code to be run in the main thread (I think, to create [...] read more
c++
windows-8
windows-runtime
1vote
1answer

Understanding the solution for a EXC_BAD_ACCESS (SIGSEGV) crash

I've been debugging my iOS app for a day or so already, trying to solve an EXC_BAD_ACCESS (SIGSEGV) crash. Here's the interesting part of the crash log: Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x00000051 Triggered by Thread: 0 Thread 0 Crashed: 0 libsystem_kernel.dylib 0x38bfc6e4 __kill + 8 1 [...] read more
ios
objective-c
0votes
1answer

Blue screen when trying to optimize drive

Found out that while I was away my PC had crashed ("Your PC ran into a problem...") and got the helpful tip to look for REGISTRY_ERROR. Given that I have an SSD drive, I thought of running the optimize drive program that comes with Windows 10, but alas, got the [...] read more
hard-drive
ssd
windows-10
crash
0votes
1answer

How to set an SPN for SQL Server on a Workgroup

I'm trying to remote connect to my Sql server 2016 instance on my home server running on a workgroup. I need to set an SPN to do this. All the guides out there seem to be related to setting the SPN for domain situations, not workgroups. Here is the SPN [...] read more
sql-server
workgroup
spn
0votes
2answers

How to access a function inside a dll file in C++

I am currently trying to communicate with a device using CAN. To do so I am using PCAN Basic using C++. Unfortunately, I know nothing about accessing a function inside a dll file (which is what is provided). I found this link: Calling a dll function from C++ and am [...] read more
c++
dll
unhandled-exception
loadlibrary
can-bus

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