From 9fc3ed958a47482b419ce317c54b43b6b5779c49 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 13 Dec 2000 08:52:53 +0000 Subject: make sure we actually make enough space for " ". 2000-12-13 Larry Ewing * e-html-utils.c (e_text_to_html): make sure we actually make enough space for " ". svn path=/trunk/; revision=6964 --- e-util/ChangeLog | 5 +++++ e-util/e-html-utils.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 884c239624..fa3d554f78 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2000-12-13 Larry Ewing + + * e-html-utils.c (e_text_to_html): make sure we actually make + enough space for " ". + 2000-12-08 Federico Mena Quintero * e-dialog-widgets.c (e_dialog_editable_get): Updated diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index 7395f6144b..e63b233676 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -208,7 +208,7 @@ e_text_to_html (const char *input, unsigned int flags) E_TEXT_TO_HTML_CONVERT_NL)) { do { out = check_size (&buffer, &buffer_size, - out, 6); + out, 7); strcpy (out, " "); out += 6; col++; -- cgit v1.2.3