diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-html-utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <lewing@helixcode.com> + + * e-html-utils.c (e_text_to_html): make sure we actually make + enough space for " ". + 2000-12-08 Federico Mena Quintero <federico@helixcode.com> * 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++; |