aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-rule.c
diff options
context:
space:
mode:
authorBill Zhu <bill.zhu@sun.com>2004-03-16 15:46:05 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-03-16 15:46:05 +0800
commit6d69af64501bcad90929af835220d41bf874d614 (patch)
tree00a90fba1353d88c9d43bd63942dae1a58389ad8 /filter/filter-rule.c
parentd9498079f361e18b24ef6113793d481f20cb36ae (diff)
downloadgsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar.gz
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar.bz2
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar.lz
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar.xz
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.tar.zst
gsoc2013-evolution-6d69af64501bcad90929af835220d41bf874d614.zip
When copying a FilterPart of a rule, we need copy the data of parts
2004-03-14 Bill Zhu <bill.zhu@sun.com> * filter-rule.c (rule_copy): When copying a FilterPart of a rule, we need copy the data of parts together but not only copy the pointer. svn path=/trunk/; revision=25086
Diffstat (limited to 'filter/filter-rule.c')
-rw-r--r--filter/filter-rule.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/filter-rule.c b/filter/filter-rule.c
index fdf59a5c6f..0aed1c4260 100644
--- a/filter/filter-rule.c
+++ b/filter/filter-rule.c
@@ -437,8 +437,9 @@ rule_copy (FilterRule *dest, FilterRule *src)
node = src->parts;
while (node) {
- FilterPart *part = node->data;
-
+ FilterPart *part;
+
+ part = filter_part_clone (node->data);
g_object_ref (part);
dest->parts = g_list_append (dest->parts, part);
node = node->next;