X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Frealloc.c;h=c1fe9e5a18752d8cf36958614fb66ea7517bfefe;hb=0d0706a5f5e05d18ab61e7f19ca407452db68a31;hp=2a39033a73f87ceedcb3d7476a36db06f19c9eee;hpb=2088d1000c3b20b9a905f6b39f1c1393aa3590b9;p=gnulib.git diff --git a/lib/realloc.c b/lib/realloc.c index 2a39033a7..c1fe9e5a1 100644 --- a/lib/realloc.c +++ b/lib/realloc.c @@ -1,5 +1,6 @@ -/* Work around bug on some systems where realloc (NULL, n) fails. - Copyright (C) 1997 Free Software Foundation, Inc. +/* realloc() function that is glibc compatible. + + Copyright (C) 1997, 2003, 2004, 2006 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 @@ -13,32 +14,32 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* written by Jim Meyering */ -#if HAVE_CONFIG_H -# include -#endif +#include #undef realloc -#include - -char *malloc (); -char *realloc (); +#include /* Change the size of an allocated block of memory P to N bytes, with error checking. If N is zero, change it to 1. If P is NULL, use malloc. */ -char * -rpl_realloc (p, n) - char *p; - size_t n; +void * +rpl_realloc (void *p, size_t n) { if (n == 0) - n = 1; - if (p == 0) + { + n = 1; + + /* In theory realloc might fail, so don't rely on it to free. */ + free (p); + p = NULL; + } + + if (p == NULL) return malloc (n); return realloc (p, n); }