diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2001-07-05 17:38:59 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-07-05 17:38:59 +0800 |
commit | 228991b3170bd7a2e824706818544d93b9406559 (patch) | |
tree | 771bf15bb039a4b419e8fcc3165f549418c410c6 /camel/camel-folder-summary.c | |
parent | dcb01da05a7b087d186cdb6293142e63a42809fa (diff) | |
download | gsoc2013-evolution-228991b3170bd7a2e824706818544d93b9406559.tar.gz gsoc2013-evolution-228991b3170bd7a2e824706818544d93b9406559.tar.zst gsoc2013-evolution-228991b3170bd7a2e824706818544d93b9406559.zip |
(camel_message_info_dup_to): Assign the to->strings from the
e_poolv_cpy() call, since it may allocaote a new poolv if the
lengths do not match.
svn path=/trunk/; revision=10790
Diffstat (limited to 'camel/camel-folder-summary.c')
-rw-r--r-- | camel/camel-folder-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index bd085b4b3f..1dfdff9dd6 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -2352,7 +2352,7 @@ camel_message_info_dup_to(const CamelMessageInfo *from, CamelMessageInfo *to) /* Copy strings */ #ifdef DOEPOOLV - e_poolv_cpy (to->strings, from->strings); + to->strings = e_poolv_cpy (to->strings, from->strings); #elif defined (DOESTRV) /* to->strings = e_strv_new(CAMEL_MESSAGE_INFO_LAST); */ e_strv_set(to->strings, CAMEL_MESSAGE_INFO_SUBJECT, camel_message_info_subject(from)); |