diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-01-29 23:28:03 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2009-01-29 23:28:03 +0800 |
commit | 1b43d4200b3e05da66a1dd036308037ef08e59e8 (patch) | |
tree | 74748c096f7dd9e4cb4c2ea2c01b9a03f497cddd /mail/message-list.c | |
parent | 7261b445bc5995ebf04c64f35011b091b6e94638 (diff) | |
download | gsoc2013-evolution-1b43d4200b3e05da66a1dd036308037ef08e59e8.tar.gz 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/message-list.c')
-rw-r--r-- | mail/message-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } } } |