This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
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
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
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
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
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
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
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