diff options
author | Not Zed <NotZed@Ximian.com> | 2001-03-27 18:10:16 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-03-27 18:10:16 +0800 |
commit | 0fc9632e427c110c972315f70f4135359c95095a (patch) | |
tree | 980c1ba8b80d39c88a7f64b9152b106a9fb1667c /camel/camel-vee-folder.c | |
parent | 0a12cd8b6ba0acaf48fb9d452136238e81948057 (diff) | |
download | gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.gz gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.zst gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.zip |
Fix a cut n paste bug, we want uid_removed not uid_changed deref, fixes
2001-03-27 Not Zed <NotZed@Ximian.com>
* camel-vee-folder.c (folder_changed): Fix a cut n paste bug, we
want uid_removed not uid_changed deref, fixes bug #1999.
svn path=/trunk/; revision=8973
Diffstat (limited to 'camel/camel-vee-folder.c')
-rw-r--r-- | camel/camel-vee-folder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-vee-folder.c b/camel/camel-vee-folder.c index f2045a6bab..b6dba402f1 100644 --- a/camel/camel-vee-folder.c +++ b/camel/camel-vee-folder.c @@ -897,7 +897,7 @@ folder_changed(CamelFolder *sub, CamelFolderChangeInfo *changes, CamelVeeFolder } for (i=0;i<changes->uid_removed->len;i++) { - vuid = g_strdup_printf("%.8s%s", hash, (char *)changes->uid_changed->pdata[i]); + vuid = g_strdup_printf("%.8s%s", hash, (char *)changes->uid_removed->pdata[i]); vinfo = (CamelVeeMessageInfo *)camel_folder_summary_uid(folder->summary, vuid); if (vinfo) { camel_folder_change_info_remove_uid(vf->changes, vuid); |