diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-04-16 08:05:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-04-16 08:05:35 +0000 |
commit | ce7c101ed54cd131f98efff1ccc19975ebfee356 (patch) | |
tree | 057e535e17c81c58db0e41a0f40f400406f61c06 /usr.bin/ssh | |
parent | 235573628dda37b2bf647ea37d195ddbd40eaadf (diff) |
xrealloc dealing with ptr == nULL; mouring
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/xmalloc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/xmalloc.c b/usr.bin/ssh/xmalloc.c index 8a23b8b70ff..50466274907 100644 --- a/usr.bin/ssh/xmalloc.c +++ b/usr.bin/ssh/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; |