X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fgetcpy.c;h=1186831a2cdf2e5a68ce0b720511f1f40253bcad;hp=f23641dd81ec5326556a66e1e18d0d2dedf3ad5d;hb=1513f7668c494c4583141d6115669b7198c14556;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68 diff --git a/sbr/getcpy.c b/sbr/getcpy.c index f23641d..1186831 100644 --- a/sbr/getcpy.c +++ b/sbr/getcpy.c @@ -14,6 +14,7 @@ */ #include +#include char * @@ -24,12 +25,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;