diff options
author | Hiroyuki Ikezoe <poincare@ikezoe.net> | 2007-08-03 19:56:03 +0800 |
---|---|---|
committer | Hiroyuki Ikezoe <hiikezoe@src.gnome.org> | 2007-08-03 19:56:03 +0800 |
commit | 5996291b3770c53609e29a771c6c3d54381f19be (patch) | |
tree | bb8a712117b2718d85fa711e66f0c0967ee4ad57 | |
parent | 3f9cf321728447c8349f514a874e7865ed64786a (diff) | |
download | gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.gz gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.zst gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.zip |
** Fix for bug #460821
2007-08-03 Hiroyuki Ikezoe <poincare@ikezoe.net>
** Fix for bug #460821
* attachment-reminder.c: (strip_text_msg): The second argument of
g_utf8_strdown() expects the length of string in bytes or -1.
svn path=/trunk/; revision=33943
-rw-r--r-- | plugins/attachment-reminder/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/attachment-reminder/attachment-reminder.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/attachment-reminder/ChangeLog b/plugins/attachment-reminder/ChangeLog index 63c5a39d50..cad741475c 100644 --- a/plugins/attachment-reminder/ChangeLog +++ b/plugins/attachment-reminder/ChangeLog @@ -1,3 +1,10 @@ +2007-08-03 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fix for bug #460821 + + * attachment-reminder.c: (strip_text_msg): The second argument of + g_utf8_strdown() expects the length of string in bytes or -1. + 2007-07-30 Andre Klapper <a9016009@gmx.de> * attachment-reminder.glade: diff --git a/plugins/attachment-reminder/attachment-reminder.c b/plugins/attachment-reminder/attachment-reminder.c index 33971dd25e..92f335c72d 100644 --- a/plugins/attachment-reminder/attachment-reminder.c +++ b/plugins/attachment-reminder/attachment-reminder.c @@ -185,7 +185,7 @@ static gchar* strip_text_msg (gchar *msg) g_strfreev (lines); - return g_utf8_strdown (stripped_msg, g_utf8_strlen (stripped_msg, -1)); + return g_utf8_strdown (stripped_msg, -1); } static void |