aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/attachment-reminder
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <poincare@ikezoe.net>2007-08-03 19:56:03 +0800
committerHiroyuki Ikezoe <hiikezoe@src.gnome.org>2007-08-03 19:56:03 +0800
commit5996291b3770c53609e29a771c6c3d54381f19be (patch)
treebb8a712117b2718d85fa711e66f0c0967ee4ad57 /plugins/attachment-reminder
parent3f9cf321728447c8349f514a874e7865ed64786a (diff)
downloadgsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar
gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.gz
gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.bz2
gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.lz
gsoc2013-evolution-5996291b3770c53609e29a771c6c3d54381f19be.tar.xz
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
Diffstat (limited to 'plugins/attachment-reminder')
-rw-r--r--plugins/attachment-reminder/ChangeLog7
-rw-r--r--plugins/attachment-reminder/attachment-reminder.c2
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