* Removed the built-in memory leak checker. It wasn't threadsafe and
[citadel.git] / citadel / html.c
index 697547a14fd70061d766a5f0d1ef86b3658fd60f..4b910252859367a9c4f43bf647261d1ad6e713dc 100644 (file)
@@ -69,7 +69,7 @@ char *html_to_ascii(char *inputmsg, int screenwidth, int do_citaformat) {
        strcpy(outbuf, "");
 
        outptr_buffer_size = strlen(inptr) + SIZ;
-       outptr = mallok(outptr_buffer_size);
+       outptr = malloc(outptr_buffer_size);
        if (outptr == NULL) return NULL;
        strcpy(outptr, "");
        output_len = 0;