]> git.marmaro.de Git - mmh/blobdiff - sbr/concat.c
Remove unused code
[mmh] / sbr / concat.c
index 5c519e9f4896f324fcd6df117e338c12b1f6db28..9efe73180d894870b7e14e606b1950a0f7da0c39 100644 (file)
@@ -9,6 +9,7 @@
 
 #include <h/mh.h>
 #include <h/utils.h>
+#include <stdarg.h>
 
 
 static char *
@@ -35,7 +36,7 @@ concat(char *s1, ...)
                len += strlen(cp);
        va_end(list);
 
-       dp = sp = mh_xmalloc(len);
+       dp = sp = mh_xcalloc(len, sizeof(char));
 
        sp = copy(s1, sp);