X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fhtml.c;h=4b910252859367a9c4f43bf647261d1ad6e713dc;hb=f154d097d062caf389d9fd5c096cf048d9f5724e;hp=697547a14fd70061d766a5f0d1ef86b3658fd60f;hpb=73a422963bf40757c43f72877fc2f622f136ccd4;p=citadel.git diff --git a/citadel/html.c b/citadel/html.c index 697547a14..4b9102528 100644 --- a/citadel/html.c +++ b/citadel/html.c @@ -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;