Update copyright headers for dual licensing.
[gd/nettle] / realloc.c
1 /* realloc.c
2
3    Copyright (C) 2002 Niels Möller
4
5    This file is part of GNU Nettle.
6
7    GNU Nettle is free software: you can redistribute it and/or
8    modify it under the terms of either:
9
10      * the GNU Lesser General Public License as published by the Free
11        Software Foundation; either version 3 of the License, or (at your
12        option) any later version.
13
14    or
15
16      * the GNU General Public License as published by the Free
17        Software Foundation; either version 2 of the License, or (at your
18        option) any later version.
19
20    or both in parallel, as here.
21
22    GNU Nettle is distributed in the hope that it will be useful,
23    but WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25    General Public License for more details.
26
27    You should have received copies of the GNU General Public License and
28    the GNU Lesser General Public License along with this program.  If
29    not, see http://www.gnu.org/licenses/.
30 */
31
32 #if HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <stdlib.h>
37 #include <stdio.h>
38
39 #include "realloc.h"
40
41 /* NOTE: Calling libc realloc with size == 0 is not required to
42    totally free the object, it is allowed to return a valid
43    pointer. */
44 void *
45 nettle_realloc(void *ctx UNUSED, void *p, size_t length)
46 {
47   if (length > 0)
48     return realloc(p, length);
49
50   free(p);
51   return NULL;
52 }
53
54 void *
55 nettle_xrealloc(void *ctx UNUSED, void *p, size_t length)
56 {
57   if (length > 0)
58     {
59       void *n = realloc(p, length);
60       if (!n)
61         {
62           fprintf(stderr, "Virtual memory exhausted.\n");
63           abort();
64         }
65       return n;
66     }
67   free(p);
68   return NULL;
69 }