From 90e3e5497f9b6b7555036c776c77f2c81a4c839d Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Mon, 6 Feb 2006 08:53:21 +0000 Subject: Fixed memory leaks. Fixes #329251. svn path=/trunk/; revision=31418 --- plugins/exchange-operations/exchange-contacts.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'plugins/exchange-operations/exchange-contacts.c') diff --git a/plugins/exchange-operations/exchange-contacts.c b/plugins/exchange-operations/exchange-contacts.c index 46ab1f8f7a..164a314549 100644 --- a/plugins/exchange-operations/exchange-contacts.c +++ b/plugins/exchange-operations/exchange-contacts.c @@ -365,8 +365,10 @@ e_exchange_contacts_commit (EPlugin *epl, EConfigTarget *target) e_source_set_relative_uri (source, ruri); e_source_set_property (source, "username", username); e_source_set_property (source, "auth-domain", "Exchange"); - if (authtype) + if (authtype) { e_source_set_property (source, "auth-type", authtype); + g_free (authtype); + } e_source_set_property (source, "auth", "plain/password"); if (!contacts_src_exists) { -- cgit