Windows error 0x00000590, 1424

Detailed Error Information

INVALID_EDIT_HEIGHT[1]

MessageHeight must be less than 256.
Declared inwinerror.h

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

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 Code1424 (0x0590)

Questions

0votes
0answers

32-bit programs generated by GCC-7.5.0 on ubuntu 18.04 are not based at 0x8048000

I write a very simple program //main.c int main() { return 0; } and compile it into a 32-bit executable. gcc main.c -m32 -o main And then I check its base address with readelf -l main root@acesrc:~# readelf -l main Elf file type is DYN (Shared object file) Entry point [...] read more
c
linux
gcc
x86
ubuntu-18.04

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