From: Jakub Jelinek Date: Fri, 11 Feb 2005 15:06:18 +0000 (+0000) Subject: * debug/chk_fail.c (__chk_fail): Add a while (1) loop around X-Git-Tag: cvs/fedora-glibc-2_3_4-9~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e35b009a0e59a26b95b13e028333eb17e297d02c;p=thirdparty%2Fglibc.git * debug/chk_fail.c (__chk_fail): Add a while (1) loop around __libc_message to kill GCC warning about noreturn function returning. --- diff --git a/ChangeLog b/ChangeLog index b71840f9fde..be37c4732a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-02-11 Jakub Jelinek + * debug/chk_fail.c (__chk_fail): Add a while (1) loop around + __libc_message to kill GCC warning about noreturn function returning. + * elf/rtld.c (_dl_start): Set bootstrap_map.l_relocated even for already prelinked ld.so. diff --git a/debug/chk_fail.c b/debug/chk_fail.c index 29df08b9cae..6921ca4686b 100644 --- a/debug/chk_fail.c +++ b/debug/chk_fail.c @@ -26,7 +26,9 @@ void __attribute__ ((noreturn)) __chk_fail (void) { - __libc_message (1, "*** buffer overflow detected ***: %s terminated\n", - __libc_argv[0] ?: ""); + /* The loop is added only to keep gcc happy. */ + while (1) + __libc_message (1, "*** buffer overflow detected ***: %s terminated\n", + __libc_argv[0] ?: ""); } libc_hidden_def (__chk_fail)