diff options
author | peter <peter@FreeBSD.org> | 2003-01-21 21:53:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-01-21 21:53:03 +0000 |
commit | 821118cc49e4fb917b543aff27dfeeb48f9959cb (patch) | |
tree | ac24d0bf3321edf74c485789b0a58c0ac84bb5fb /contrib/cvs/src/root.c | |
parent | 3dc96f7243ece1d1f7f87b03334f840415e0db63 (diff) | |
download | FreeBSD-src-821118cc49e4fb917b543aff27dfeeb48f9959cb.zip FreeBSD-src-821118cc49e4fb917b543aff27dfeeb48f9959cb.tar.gz |
Import cvs-1.11.5 onto vendor branch
Diffstat (limited to 'contrib/cvs/src/root.c')
-rw-r--r-- | contrib/cvs/src/root.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/cvs/src/root.c b/contrib/cvs/src/root.c index 9bbbe47..8308e97 100644 --- a/contrib/cvs/src/root.c +++ b/contrib/cvs/src/root.c @@ -191,13 +191,13 @@ root_allow_add (arg) { root_allow_size = 1; root_allow_vector = - (char **) malloc (root_allow_size * sizeof (char *)); + (char **) xmalloc (root_allow_size * sizeof (char *)); } else { root_allow_size *= 2; root_allow_vector = - (char **) realloc (root_allow_vector, + (char **) xrealloc (root_allow_vector, root_allow_size * sizeof (char *)); } @@ -212,7 +212,7 @@ error ENOMEM Virtual memory exhausted.\n"); error_exit (); } } - p = malloc (strlen (arg) + 1); + p = xmalloc (strlen (arg) + 1); if (p == NULL) goto no_memory; strcpy (p, arg); |