Windows error 0x000004F0, 1264

Detailed Error Information

SMARTCARD_SUBSYSTEM_FAILURE[1]

MessageThe Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
Declared inwinerror.h

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

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 Code1264 (0x04f0)

Questions

6votes
1answer

Visual styles don't work on an in-process COM server

I am developing a program which uses visual styles. The Main method looks like this: [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form()); } The program also works as a plugin of another application and it is started, in this case, via COM. The problem is that the calling [...] read more
c#
.net
winforms
plugins
com
1vote
1answer

Cocos2d-x game crashes on Android Emulator

Hi my app is able to run on a real device but I'm having trouble running it on the android emulator. It crashes on startup. I have tried using x86 architecture along with ARM architecture and am getting the same results. I have Use Host Gpu checked and am running [...] read more
android
android-emulator
cocos2d-x
0votes
0answers

Cannot access memory at break point address in GDB

I've already set breakpoint at address 0x000004ed. But why can't I access it even after the code has been ran? (gdb) disassemble main Dump of assembler code for function main: 0x000004ed <+0>: push ebp 0x000004ee <+1>: mov ebp,esp 0x000004f0 <+3>: sub esp,0x10 0x000004f3 <+6>: call 0x512 <__x86.get_pc_thunk.ax> 0x000004f8 <+11>: add [...] read more
c
memory
gdb
0votes
1answer

XMS.NET fails when receiving JMS message with RFH2 header at ParseJmsFolder

Our partner started using custom properties for messages being sent over IBM WebSphere MQ and our application developed using XMS.NET started to fail because of that. It turned out that the error is being thrown inside parsing the JMS envelope and inside the ParseJmsFolder method. This is the exception we [...] read more
.net
jms
ibm-mq
xms
rfh2
0votes
0answers

disassembly c program with gdb get error

When I disassemble c program with gdb, I get error. I googled it but no result found that I want. Can someone help me? my document first.asm is: global main main: mov eax, 1 mov ebx, 2 add eax, ebx ret root@kali-linux:~/my-document/test# gdb ./first GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright [...] read more
c
gdb
disassembly

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