diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-17 01:24:19 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-17 01:24:19 -0400 |
commit | 398058a8738fc6a2f0051b236a907cb621aefabc (patch) | |
tree | bac65e7f232282bfb8169ddd231910695aa9ad88 /hash.c | |
parent | b730fbc6b86d777e80856e997ddc56fc4a851769 (diff) | |
download | gunmake-398058a8738fc6a2f0051b236a907cb621aefabc.tar.gz |
Use xcalloc() in hash.c to handle out of memory errors.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ this program. If not, see <http://www.gnu.org/licenses/>. */ #include "makeint.h" #include "hash.h" -#define CALLOC(t, n) ((t *) calloc (sizeof (t), (n))) +#define CALLOC(t, n) ((t *) xcalloc (sizeof (t) * (n))) #define MALLOC(t, n) ((t *) xmalloc (sizeof (t) * (n))) #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n))) #define CLONE(o, t, n) ((t *) memcpy (MALLOC (t, (n)), (o), sizeof (t) * (n))) |