aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2009-01-29 23:28:03 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2009-01-29 23:28:03 +0800
commit1b43d4200b3e05da66a1dd036308037ef08e59e8 (patch)
tree74748c096f7dd9e4cb4c2ea2c01b9a03f497cddd /mail
parent7261b445bc5995ebf04c64f35011b091b6e94638 (diff)
downloadgsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.gz
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.bz2
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.lz
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.xz
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.zst
gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.zip
** Fix for bug #567654
2009-01-29 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #567654 * message-list.c: (regen_list_exec): Don't free the reffable string. svn path=/trunk/; revision=37167
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/message-list.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3dfe1a41d8..14f658f48c 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-29 Srinivasa Ragavan <sragavan@novell.com>
+
+ ** Fix for bug #567654
+
+ * message-list.c: (regen_list_exec): Don't free the reffable string.
+
2009-01-27 Milan Crha <mcrha@redhat.com>
** Fix for bug #561628
diff --git a/mail/message-list.c b/mail/message-list.c
index 0ac1bc7844..7487f12ad2 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -4061,7 +4061,7 @@ regen_list_exec (struct _regen_list_msg *m)
on the flag whether we can view deleted messages or not. */
if (!was_deleted || (was_deleted && !m->hidedel))
- g_ptr_array_add (uids, g_strdup (looking_for));
+ g_ptr_array_add (uids, camel_pstring_strdup (looking_for));
}
}
}