From c4c8a3fd46c209edebbc0dc55ae08c5e9ecadf93 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Thu, 16 Apr 2009 19:16:41 +0000 Subject: 2009-04-16 Jeff johnston * libc/misc/init.c (__libc_fini_array): Process fini_array in reverse order as compliant with the ELF specification. --- newlib/libc/misc/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newlib/libc/misc') diff --git a/newlib/libc/misc/init.c b/newlib/libc/misc/init.c index 539fbefed..50bac50c7 100644 --- a/newlib/libc/misc/init.c +++ b/newlib/libc/misc/init.c @@ -52,8 +52,8 @@ __libc_fini_array (void) size_t i; count = __fini_array_end - __fini_array_start; - for (i = 0; i < count; i++) - __fini_array_start[i] (); + for (i = count; i > 0; i--) + __fini_array_start[i-1] (); _fini (); } -- cgit v1.2.3