X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=lib%2Frealloc.c;fp=lib%2Frealloc.c;h=36aeecc41b7203574b658edaebb6bd9975c9f737;hb=a2016c1de6e4884f6c8ed5cc498f3bf821c25ca4;hp=b61c2ca8294d05ba5561ff0ba380d33cd5748368;hpb=c7e61475680fa226bd9b8bdd469cd66914e630f5;p=debian%2Fgzip diff --git a/lib/realloc.c b/lib/realloc.c index b61c2ca..36aeecc 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 @@ -71,7 +72,7 @@ rpl_realloc (void *p, size_t n) { #if GNULIB_REALLOC_GNU && !NEED_REALLOC_GNU && !SYSTEM_MALLOC_GLIBC_COMPATIBLE if (n == 0) - n = 1; + n = 1; #endif result = malloc (n); }