Windows error 0x000004ED, 1261

Detailed Error Information

REG_NAT_CONSUMPTION[1]

MessageA program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
Declared inwinerror.h

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

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 Code1261 (0x04ed)

Questions

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

AccessViolationException when trying to connect filters

I am trying to implement a filtergraph in c# code. The filter is perfectly ok in graphstudionext and works, but when trying to connect the last two filters (the mpeg-mux filter and the file writer filter) i get an AccessViolationException. What can be the reason for an accessviolation error? When [...] read more
c#
directshow
directshow.net

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