summaryrefslogtreecommitdiff
path: root/xmalloc.c
diff options
context:
space:
mode:
authormouring <mouring>2001-08-06 21:03:23 +0000
committermouring <mouring>2001-08-06 21:03:23 +0000
commit6f79b0351a5a23ea763720834fbb0a274f24878f (patch)
tree31c2e13e25961415ffe15e75723a5f59ca3b970d /xmalloc.c
parent39915f26481e56cd131682677de462a02dd13eb6 (diff)
downloadopenssh-6f79b0351a5a23ea763720834fbb0a274f24878f.tar.gz
- stevesk@cvs.openbsd.org 2001/07/23 18:21:46
[xmalloc.c] no zero size xstrdup() error; ok markus@
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 50466274..99c6ac33 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -13,7 +13,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: xmalloc.c,v 1.15 2001/04/16 08:05:34 deraadt Exp $");
+RCSID("$OpenBSD: xmalloc.c,v 1.16 2001/07/23 18:21:46 stevesk Exp $");
#include "xmalloc.h"
#include "log.h"
@@ -58,11 +58,10 @@ xfree(void *ptr)
char *
xstrdup(const char *str)
{
- size_t len = strlen(str) + 1;
+ size_t len;
char *cp;
- if (len == 0)
- fatal("xstrdup: zero size");
+ len = strlen(str) + 1;
cp = xmalloc(len);
strlcpy(cp, str, len);
return cp;