Windows error 0x000007D0, 2000

Detailed Error Information

INVALID_PIXEL_FORMAT[1]

MessageThe pixel format is invalid.
Declared inwinerror.h

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

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 Code2000 (0x07d0)

Questions

4votes
1answer

WPA does not see ETW event data, tracerpt does

I am capturing ADO.Net diagnostics ETW, as described in Data Access Tracing in SQL Server 2008. The setup works, an ETL file is produced and I can see the ADO.Net trace if I use, say, tracerpt: System.Data, TextA, 0, 0, 0, 0, 17, 0, 0x0000000000000000, 0x000007D0, 0x00003A64, 1, , , [...] read more
sql-server
wmi
etw
xperf
windows-performance-analyzer
2votes
1answer

entry0 meaning in radare2

I'm new to binary analysis. I am trying to analyse a simple program I compiled from my C code via gcc. I followed these steps: 1. aaa 2. afl and I got this output: 0x00000608 3 23 sym._init 0x00000630 1 8 sym.imp.puts 0x00000638 1 8 sym.imp._IO_getc 0x00000640 1 8 sym.imp.__printf_chk [...] read more
reverse-engineering
binaryfiles
2votes
2answers

How should I write a matrix onto a text in Hex format?

I have a matrix, say: M = [1000 1350;2000 2040;3000 1400]; I wish to write this matrix onto a text file in the hex format, like this: 0x000003e8 0x00000bb8 0x000007d0 0x000007f8 0x00000bb8 0x00000578 I considered using the function dec2hex but it's very slow and inefficient. It also gives me the [...] read more
matlab
file-handling
printf
1vote
2answers

GDB symbols missing - libc claimed to be wrong library or version mismatch

I am having trouble showing proper debug symbols in the backtrace in GDB in an ARM cross-compiled system, built using Yocto. abc.c is a simple printf("Hello world\n"); program in C (nothing tricky). On the build machine: > yocto-dir/build/tmp-angstrom-glibc/sysroots/x86_64-linux/usr/bin/arm-angstrom-linux-gnueabi/arm-angstrom-linux-gnueabi-gcc abc --sysroot=yocto-dir/build/tmp-angstrom-glibc/sysroots/imx28scm -g -O0 -o abc > scp abc root@DEVICE-IP:~ On the [...] read more
c
linux
debugging
gdb
cross-compiling
1vote
2answers

Linux coredump backtrace missing frames

I got a core dump from a multi-threaded process segmentation fault crash. While inspecting the core file using GDB, I found some threads (not all) having such backtrace: Thread 4 (LWP 3344): #0 0x405ced04 in select () from /lib/arm-linux-gnueabi/libc.so.6 #1 0x405cecf8 in select () from /lib/arm-linux-gnueabi/libc.so.6 #2 0x000007d0 in ?? [...] read more
linux
multithreading
0votes
3answers

Imagemagick only reading red channel

I have a TIFF-Image, which i want to convert into a JPG. While on my local machine (Ubuntu 19.10LTS), I have ImageMagick 6.9 installed, the targeted system (Alpine 3.12.4) will have 7.0 installed. I use this command to convert the image: convert 100U.TIF 100U.JPG While on my local machine the [...] read more
imagemagick
tiff
imagemagick-convert
image-conversion
imagemagick-identify

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