X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fhtml2html.c;h=abd5904e846a1577fa6c2af0c5a2d3fa3e72eed6;hb=66bc2dac8a06eac6d8fe590d1ccc867090274579;hp=ca8804c1aa6d707699863bbf91785d12c9ad984e;hpb=28a21424f7aa43ef885537b4b705f49a0cc4dc08;p=citadel.git diff --git a/webcit/html2html.c b/webcit/html2html.c index ca8804c1a..abd5904e8 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -77,6 +77,7 @@ void output_html(char *supplied_charset, int treat_as_wiki) { char *msgstart; char *msgend; char *converted_msg; + size_t converted_alloc = 0; int buffer_length = 1; int line_length = 0; int content_length = 0; @@ -251,7 +252,11 @@ void output_html(char *supplied_charset, int treat_as_wiki) { */ /** Now go through the message, parsing tags as necessary. */ - converted_msg = malloc(content_length); + converted_alloc = content_length + 8192; + converted_msg = malloc(converted_alloc); + if (converted_msg == NULL) { + abort(); /* FIXME */ + } strcpy(converted_msg, ""); ptr = msg; msgend = strchr(msg, 0); @@ -265,7 +270,13 @@ void output_html(char *supplied_charset, int treat_as_wiki) { */ if (!strncasecmp(ptr, "= converted_alloc) { + converted_alloc += 8192; + converted_msg = realloc(converted_msg, converted_alloc); + if (converted_msg == NULL) { + abort(); + } + } sprintf(&converted_msg[output_length], "= converted_alloc) { + converted_alloc += 8192; + converted_msg = realloc(converted_msg, converted_alloc); + if (converted_msg == NULL) { + abort(); + } + } sprintf(&converted_msg[output_length], new_window); output_length += strlen(new_window); ptr = &ptr[8]; } else if ( (treat_as_wiki) && (strncasecmp(ptr, "= converted_alloc) { + converted_alloc += 8192; + converted_msg = realloc(converted_msg, converted_alloc); + if (converted_msg == NULL) { + abort(); + } + } sprintf(&converted_msg[output_length], " 0) { content_length += (32 + linklen); - converted_msg = realloc(converted_msg, content_length); + if (content_length >= converted_alloc) { + converted_alloc += 8192; + converted_msg = realloc(converted_msg, converted_alloc); + if (converted_msg == NULL) { + abort(); + } + } sprintf(&converted_msg[output_length], new_window); output_length += strlen(new_window); converted_msg[output_length] = '\"'; @@ -367,8 +396,8 @@ void output_html(char *supplied_charset, int treat_as_wiki) { wprintf("

\n"); /** Now give back the memory */ - free(converted_msg); - free(msg); + if (converted_msg != NULL) free(converted_msg); + if (msg != NULL) free(msg); } /*@}*/