X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Frealloc.c;h=36aeecc41b7203574b658edaebb6bd9975c9f737;hb=a731808a4ac512228e870d5f443b91557f418559;hp=18cc6280375e43aa158431f63036156e2030f855;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/realloc.c b/lib/realloc.c index 18cc62803..36aeecc41 100644 --- a/lib/realloc.c +++ b/lib/realloc.c @@ -1,6 +1,7 @@ /* realloc() function that is glibc compatible. - Copyright (C) 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2010 Free Software + Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,18 +19,32 @@ /* written by Jim Meyering and Bruno Haible */ #include + /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */ #ifdef realloc -# define NEED_REALLOC_GNU -# undef realloc +# define NEED_REALLOC_GNU 1 +#endif + +/* Infer the properties of the system's malloc function. + Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h. */ +#if GNULIB_MALLOC_GNU && !defined malloc +# define SYSTEM_MALLOC_GLIBC_COMPATIBLE 1 #endif +/* Below we want to call the system's malloc and realloc. + Undefine the symbols here so that including provides a + declaration of malloc(), not of rpl_malloc(), and likewise for realloc. */ +#undef malloc +#undef realloc + /* Specification. */ #include #include -/* Call the system's malloc and realloc below. */ +/* Below we want to call the system's malloc and realloc. + Undefine the symbols, if they were defined by gnulib's + replacement. */ #undef malloc #undef realloc @@ -42,7 +57,7 @@ rpl_realloc (void *p, size_t n) { void *result; -#ifdef NEED_REALLOC_GNU +#if NEED_REALLOC_GNU if (n == 0) { n = 1; @@ -53,7 +68,16 @@ rpl_realloc (void *p, size_t n) } #endif - result = (p == NULL ? malloc (n) : realloc (p, n)); + if (p == NULL) + { +#if GNULIB_REALLOC_GNU && !NEED_REALLOC_GNU && !SYSTEM_MALLOC_GLIBC_COMPATIBLE + if (n == 0) + n = 1; +#endif + result = malloc (n); + } + else + result = realloc (p, n); #if !HAVE_REALLOC_POSIX if (result == NULL)