Windows error 0x00000053, 83

Detailed Error Information

FAIL_I24[1]

MessageFail on INT 24.
Declared inwinerror.h

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

NO_BOOT_DEVICE[2]

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

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 Code83 (0x0053)

Questions

4votes
3answers

Analyzing a CLR .dmp file in WinDbg

I have a C# .NET 3.5 application created in Visual Studio 2008 that is crashing on a Windows XP SP3 (x86) PC with no development environment. I have been able to get the .dmp file from the PC and take it back to my Windows 7 64-bit development PC and [...] read more
c#
debugging
windbg
2votes
0answers

Protobuf-net serializer used in Unity gives Invalid IL code IL_0035: call 0x06000001

Using Unity 5.0.1f1, protobuf-net r668. I've set up a protobuf serializer dll using Visual Studio 2013, set to framework "Unity .Net 3.5 Subset Base Class Libraries" (I've also tried .Net 3.5 with same result). I have 4 parent data types to serialize: two rather simple ones, and two a tad [...] read more
c#
unity3d
protobuf-net
1vote
2answers

Microsoft Advertising error

I never had problems with Microsoft Advertising until yesterday... Yesterday I had lot of crash in my app due to Microsoft Advertising. The symbol name of the event is: Microsoft_Advertising!Windows::UI::Xaml::DependencyObject::[Windows::UI::Xaml::IDependencyObject]::SetValue Someone else have this problem ? How can I solve this problem? (my app is a Windows 10 universal app [...] read more
c#
xaml
uwp
ads
1vote
0answers

IExplore crash points to mscorwks in mini-dump opened with WinDBG

Help please - I've been asked to debug a mini-dump crash dump in which IEXPORE.EXE appears to be the primary image that failed, and MSCORWKS is pointed to as the faulting module. At least that's what it looks like when I open up the crash using WinDBG. I'm able to [...] read more
.net
windbg
crash-dumps
1vote
1answer

how to find the caller function in shared library libev when the application crashes

I compiled my application and shared library libev using -g flag in gcc. When I run the application it crashes after a few minutes. I ran the application within gdb and tried to do a backtrace. I get the output (appended at the end). As the output shows, I only [...] read more
gdb
shared-libraries
1vote
1answer

Missing source line information when analyzing minidump in WinDbg

I'm trying to write a minidump from within the unhandled exception handler in a managed C# application (.NET Framework 2.0): namespace MiniDumpTest { class Program { static void Main(string[] args) { AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); Console.WriteLine("started"); try { Console.WriteLine(MyFunc()); } finally { Console.WriteLine("finished"); Console.ReadLine(); } } static void CurrentDomain_UnhandledException(object sender, [...] read more
c#
.net
0votes
1answer

IMUL OllyDbg multiplication

I have problem to understand one of instruction in Assembly Language -> IMUL From what I know, Imul is -> imul dest, source1, source2 The problem that I have now, the result of multiplication of Imul in ollyDBG and mine is not same ! Here is IMUL on OllyDbg -> [...] read more
assembly

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