From d7ea6022c14604e845edef89e61c253804273cba Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 22 Feb 2002 19:57:17 +0000 Subject: Fix for if the buffer ends with an email address (and no newline). * e-html-utils.c (e_text_to_html_full): Fix for if the buffer ends with an email address (and no newline). svn path=/trunk/; revision=15802 --- e-util/ChangeLog | 5 +++++ e-util/e-html-utils.c | 2 ++ 2 files changed, 7 insertions(+) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 080a62584e..f26db16308 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2002-02-22 Dan Winship + + * e-html-utils.c (e_text_to_html_full): Fix for if the buffer ends + with an email address (and no newline). + 2002-02-09 JP Rosevear * e-pilot-settings.h: add row and column defines diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index ac8e7c6425..2b5e3d2d37 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -307,6 +307,8 @@ e_text_to_html_full (const char *input, unsigned int flags, guint32 color) g_free (dispaddr); g_free (outaddr); + if (!*cur) + break; u = g_utf8_get_char (cur); } } -- cgit v1.2.3