src/string.cpp
branchcustombridgeheads
changeset 5650 aefc131bf5ce
parent 5649 55c8267c933f
child 5860 7fdc9b423ba1
--- a/src/string.cpp	Thu Jan 11 13:41:16 2007 +0000
+++ b/src/string.cpp	Mon Jan 15 20:14:06 2007 +0000
@@ -6,6 +6,7 @@
 #include "string.h"
 #include "macros.h"
 #include "table/control_codes.h"
+#include "helpers.hpp"
 
 #include <stdarg.h>
 #include <ctype.h> // required for tolower()
@@ -63,7 +64,7 @@
 	va_start(va, str);
 	len = vsnprintf(buf, lengthof(buf), str, va);
 	va_end(va);
-	p = malloc(len + 1);
+	MallocT(&p, len + 1);
 	if (p != NULL) memcpy(p, buf, len + 1);
 	return p;
 }