]> git.deb.at Git - pkg/abook.git/commitdiff
- cleanup
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Fri, 29 Jul 2005 16:07:36 +0000 (16:07 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Fri, 29 Jul 2005 16:07:36 +0000 (16:07 +0000)
misc.c

diff --git a/misc.c b/misc.c
index 73154e85604049a49098bbdbece3e2bc7952b03b..5c9a64d75ecc58e6f5fa29732208723ae9d59447 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -126,10 +126,7 @@ strconcat (const char *str, ...)
        }
        MY_VA_END;
 
-       concat = (char *)
-       xmalloc(l);
-       if(concat == NULL)
-               return NULL;
+       concat =  xmalloc(l);
 
        strcpy (concat, str);
        MY_VA_START(str);