This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
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