Windows error 0x000001F4, 500

Detailed Error Information

USER_PROFILE_LOAD[1]

MessageUser profile cannot be loaded.
Declared inwinerror.h

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

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][1]
DescriptionThe default facility code.[2][1]
Error Code500 (0x01f4)

Questions

2votes
1answer

Switch case's jump table position within code on ARM

In C/C++ a switch statement can be lowered by the compiler to a jump table. I noticed a difference of placement of the jump table between ARM and x86. X86 For x86 (And x86_64) the jump table is often placed outside of the function (e.g. .rodata) 4005e0: 48 8b 45 [...] read more
c
arm
reverse-engineering
compiler-optimization
jump-table
0votes
2answers

What is the space between [ELF Header] and [data segment]?

I compiled very very simple assembly code with nasm and ld under Linux (CentOS6 32bit). nasm -f elf -o basic1.o basic1.asm ld -o basic1 basic1.o cat basic1.asm ;--------------------------------------- section .data msg db 'hello world', 10, 00 section .bss tests resd 100 segment .text global _start _start: And, I execute the [...] read more
assembly
nasm
elf
0votes
0answers

PEVerify Defect: It reports "Type load failed" on valid class compiled with csc.exe for compact framework

A trivial class: public class TestClass : System.ServiceModel.Security.SecurityCredentialsManager { } When compiled using csc against the MS CompactFramework v3.5 will result in a dll that fails to pass peverify, resulting in a "Type load failure". It appears to be an issue with inheriting from the SecurityCredentialsManager class which is part [...] read more
c#
compact-framework
cil
csc
peverify
0votes
1answer

ListView in Fragment with adapter - can't add new objects - FATAL EXCEPTION

I'm creating an app with a tab layout consisting of three fragments. In one of these 3 Fragments I would like to have a ListView. And I would like to add ToSave objects to the ListView. I tried to add objects to the ListView from another Fragment using interface and [...] read more
android
listview
android-activity
android-fragments
android-listview
0votes
2answers

WinDbg with dump files when you have a classic ASP app which uses a lot of .Net via interop

Ok, first please don't ask why this application is the way it is. This is a classic ASP application which in several areas uses .Net and COM and some of that .Net also reaches into COM! It's all to do with code reuse really, at some point .Net was introduced [...] read more
.net
memory-leaks
asp-classic
windbg
0votes
1answer

How to send parameter to my device using libcam.dll in delphi

I have a code in Delphi I using the it to get picture from my 2D Reader, I am using 'camlib.dll' to set parameter of the Image in the device the code: unit Test_Cam; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TByteArr = array [...] read more
delphi
winapi
delphi-2006
0votes
1answer

c++ unhandled exception LoadImage() with MAKEINTRESOURCE

I'm having a problem to add a bitmap image to a static control box, i got an unhandled exception when i run my program. Here's my code. FROM RC FILE : ID_ICON1 BITMAP "icon1.bmp" CPP FILE : HANDLE bIcon1; HWND hIcon; hIcon = CreateWindowEx(0, "Static", NULL, WS_CHILD | WS_VISIBLE|SS_BITMAP, 250, [...] read more
c++
resources
loadimage
-1votes
3answers

Error on large dimension value - Run-Time Check Failure #2 - Stack around the variable 'mat' was corrupted

I am getting following error: "Run-Time Check Failure #2 - Stack around the variable 'mat' was corrupted" after giving result in console. However, What I observed that, CreateMatrix function throws Access violation.. for larger matrix dimensions. For e.g. worked for 5x7 and did NOT work for 50 x 70. How [...] read more
c
pointers
memory
memory-management
access-violation

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0