diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2008-01-28 17:09:55 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2008-01-28 17:09:55 +0800 |
commit | 356c68134a2ac3a25ccfdc9f236b37c2faa40066 (patch) | |
tree | dc5d1aba6f6df203f49d1509dd4704c5b2d547ea /plugins/exchange-operations | |
parent | b41b2d7101d09422e4202724da932960c30e7e3d (diff) | |
download | gsoc2013-evolution-356c68134a2ac3a25ccfdc9f236b37c2faa40066.tar.gz gsoc2013-evolution-356c68134a2ac3a25ccfdc9f236b37c2faa40066.tar.zst gsoc2013-evolution-356c68134a2ac3a25ccfdc9f236b37c2faa40066.zip |
Fixes a double free.
2008-01-28 Srinivasa Ragavan <sragavan@novell.com>
* exchange-calendar.c: (e_exchange_calendar_commit): Fixes a double
free.
svn path=/trunk/; revision=34916
Diffstat (limited to 'plugins/exchange-operations')
-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) { |