diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-vfolder-rule.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 32a9114ca6..cd59d8a28e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2005-09-28 Parthasarathi Susarla <sparthasarathi@novell.com> + + See bug ** 317329 + * em-vfolder-rule.c: (em_vfolder_rule_add_source): + Do not add a NULL uri. + 2005-09-26 S.Antony Vincent Pandian <santony@gmail.com> Fixes #208647 diff --git a/mail/em-vfolder-rule.c b/mail/em-vfolder-rule.c index 441717e8d5..885c6e0339 100644 --- a/mail/em-vfolder-rule.c +++ b/mail/em-vfolder-rule.c @@ -142,6 +142,7 @@ void em_vfolder_rule_add_source(EMVFolderRule *vr, const char *uri) { g_assert(EM_IS_VFOLDER_RULE(vr)); + g_return_if_fail (uri); vr->sources = g_list_append(vr->sources, g_strdup(uri)); |