diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-02-21 20:59:37 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-21 21:01:39 +0800 |
commit | ad321c79756677c09b3fee13274c59dbaa27c483 (patch) | |
tree | 2044e0e5b404205dcd06d6fbe811c84e272494b8 /libempathy | |
parent | fe148502a5dd08fc62825cac6272cb5e980984a6 (diff) | |
download | gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar.gz gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar.bz2 gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar.lz gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar.xz gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.tar.zst gsoc2013-empathy-ad321c79756677c09b3fee13274c59dbaa27c483.zip |
Prevent segv attempting to free uninitialised value.
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-account-settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c index e30618187..052a0734d 100644 --- a/libempathy/empathy-account-settings.c +++ b/libempathy/empathy-account-settings.c @@ -1363,7 +1363,7 @@ empathy_account_settings_account_updated (GObject *source, EmpathyAccountSettingsPriv *priv = GET_PRIV (settings); GSimpleAsyncResult *r; GError *error = NULL; - GStrv reconnect_required; + GStrv reconnect_required = NULL; if (!tp_account_update_parameters_finish (TP_ACCOUNT (source), result, &reconnect_required, &error)) |