Make xnanosleep's integer overflow test more robust.
[gnulib.git] / lib / realloc.c
1 /* realloc() function that is glibc compatible.
2
3    Copyright (C) 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* written by Jim Meyering and Bruno Haible */
19
20 #include <config.h>
21 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h.  */
22 #ifdef realloc
23 # define NEED_REALLOC_GNU
24 # undef realloc
25 #endif
26
27 /* Specification.  */
28 #include <stdlib.h>
29
30 #include <errno.h>
31
32 /* Call the system's malloc and realloc below.  */
33 #undef malloc
34 #undef realloc
35
36 /* Change the size of an allocated block of memory P to N bytes,
37    with error checking.  If N is zero, change it to 1.  If P is NULL,
38    use malloc.  */
39
40 void *
41 rpl_realloc (void *p, size_t n)
42 {
43   void *result;
44
45 #ifdef NEED_REALLOC_GNU
46   if (n == 0)
47     {
48       n = 1;
49
50       /* In theory realloc might fail, so don't rely on it to free.  */
51       free (p);
52       p = NULL;
53     }
54 #endif
55
56   result = (p == NULL ? malloc (n) : realloc (p, n));
57
58 #if !HAVE_REALLOC_POSIX
59   if (result == NULL)
60     errno = ENOMEM;
61 #endif
62
63   return result;
64 }