diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-06-01 11:39:24 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-01 11:39:24 -0700 |
commit | b7629ee33f164b07afd36cccf5f18f693d600251 (patch) | |
tree | 5dc25b58ce0da8f3e1c04ad1328396401a026832 /sysdeps/i386 | |
parent | b8706f70723b63d54cdeac0362b5db69db0459e2 (diff) | |
download | glibc-b7629ee33f164b07afd36cccf5f18f693d600251.tar glibc-b7629ee33f164b07afd36cccf5f18f693d600251.tar.gz glibc-b7629ee33f164b07afd36cccf5f18f693d600251.tar.bz2 glibc-b7629ee33f164b07afd36cccf5f18f693d600251.zip |
Better error message for invalid relocatio in static binary.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/dl-irel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/dl-irel.h b/sysdeps/i386/dl-irel.h index 4acb862c69..810a35050b 100644 --- a/sysdeps/i386/dl-irel.h +++ b/sysdeps/i386/dl-irel.h @@ -21,6 +21,7 @@ #ifndef _DL_IREL_H #define _DL_IREL_H +#include <stdio.h> #include <unistd.h> #define ELF_MACHINE_IREL 1 @@ -38,7 +39,7 @@ elf_irel (const Elf32_Rel *reloc) *reloc_addr = value; } else - _exit (-1); + __libc_fatal ("unexpected reloc type in static binary"); } #endif /* dl-irel.h */ |