From 0b1e0a12183461a38d6c59b3e2511fdb7f96d534 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 16 Apr 2001 18:27:07 +1000 Subject: - deraadt@cvs.openbsd.org 2001/04/16 08:05:34 [xmalloc.c] xrealloc dealing with ptr == nULL; mouring --- xmalloc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'xmalloc.c') diff --git a/xmalloc.c b/xmalloc.c index 8a23b8b7..50466274 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: xmalloc.c,v 1.14 2001/02/07 18:04:50 itojun Exp $"); +RCSID("$OpenBSD: xmalloc.c,v 1.15 2001/04/16 08:05:34 deraadt Exp $"); #include "xmalloc.h" #include "log.h" @@ -39,8 +39,9 @@ xrealloc(void *ptr, size_t new_size) if (new_size == 0) fatal("xrealloc: zero size"); if (ptr == NULL) - fatal("xrealloc: NULL pointer given as argument"); - new_ptr = realloc(ptr, new_size); + new_ptr = malloc(new_size); + else + new_ptr = realloc(ptr, new_size); if (new_ptr == NULL) fatal("xrealloc: out of memory (new_size %lu bytes)", (u_long) new_size); return new_ptr; -- cgit v1.2.3