diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-calendar.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index d67804b685..1e15d41b2c 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2008-01-28 Srinivasa Ragavan <sragavan@novell.com> + + * exchange-calendar.c: (e_exchange_calendar_commit): Fixes a double + free. + 2007-12-31 Sushma Rai <rsushma@novell.com> ** Fixes bug #327965 diff --git a/plugins/exchange-operations/exchange-calendar.c b/plugins/exchange-operations/exchange-calendar.c index dda1acac99..74c01e0d99 100644 --- a/plugins/exchange-operations/exchange-calendar.c +++ b/plugins/exchange-operations/exchange-calendar.c @@ -480,6 +480,7 @@ e_exchange_calendar_commit (EPlugin *epl, EConfigTarget *target) if (authtype) { e_source_set_property (source, "auth-type", authtype); g_free (authtype); + authtype=NULL; } e_source_set_property (source, "auth", "1"); if (rename) { |