Windows error 0x000004B9, 1209

Detailed Error Information

INVALID_GROUPNAME[1]

MessageThe format of the specified group name is invalid.
Declared inwinerror.h

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

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 Code1209 (0x04b9)

Questions

0votes
1answer

GDB examine command confusion with address

I know it might be and obvious question, but I've decided to learn a little bit of low level programming. I began with c and the gdb. First problem: `(gdb) x/10xb $rip 0x4005a5 <main+4>: 0xb9 0x04 0x00 0x00 0x00 0xba 0x03 0x00 0x4005ad <main+12>: 0x00 0x00 (gdb) x/10xh $rip 0x4005a5 [...] read more
c++
c
debugging
gdb

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