1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 12:28:22 +01:00

Replaced malloc by wmalloc

This commit is contained in:
dan
2000-09-25 23:31:08 +00:00
parent edc57cf7a1
commit 7b3c10b07d

View File

@@ -127,10 +127,7 @@ wtokenjoin(char **list, int count)
} }
} }
flat_string = malloc(j+count+1); flat_string = wmalloc(j+count+1);
if (!flat_string) {
return NULL;
}
*flat_string = 0; *flat_string = 0;
for (i=0; i<count; i++) { for (i=0; i<count; i++) {