X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..2d688dc85e80ff9c832d9ea252ed393f0b5105e2:/sbr/getcpy.c diff --git a/sbr/getcpy.c b/sbr/getcpy.c index 07bc3651..846d33a9 100644 --- a/sbr/getcpy.c +++ b/sbr/getcpy.c @@ -6,26 +6,27 @@ * OF GETCPY WITH STRDUP. BUT THIS WILL REQUIRE * CHANGING PARTS OF THE CODE TO DEAL WITH NULL VALUES. * - * $Id$ + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include +#include char * -getcpy (char *str) +getcpy (const char *str) { char *cp; size_t len; if (str) { len = strlen(str) + 1; - if (!(cp = malloc (len))) - adios (NULL, "unable to allocate string storage"); + cp = mh_xmalloc (len); memcpy (cp, str, len); } else { - if (!(cp = malloc ((size_t) 1))) - adios (NULL, "unable to allocate string storage"); + cp = mh_xmalloc ((size_t) 1); *cp = '\0'; } return cp;