X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fgetcpy.c;h=66332480707d54d220f9be25e82c711f11855f53;hb=128545e06224233b7e91fc4c83f8830252fe16c9;hp=f23641dd81ec5326556a66e1e18d0d2dedf3ad5d;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/getcpy.c b/sbr/getcpy.c index f23641d..6633248 100644 --- a/sbr/getcpy.c +++ b/sbr/getcpy.c @@ -6,14 +6,13 @@ * 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 * @@ -24,12 +23,10 @@ getcpy (char *str) 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;