]> git.0d.be Git - empathy.git/commitdiff
Fix potential usage of an unitialized value
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Sun, 13 Sep 2009 10:10:47 +0000 (11:10 +0100)
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>
Sun, 13 Sep 2009 16:45:01 +0000 (17:45 +0100)
src/empathy-import-mc4-accounts.c

index 968293bd2790411f7cf43309b85e97228b3f2a31..17b7128322f95606348ef5c0163500a6f09a1df8 100644 (file)
@@ -374,7 +374,7 @@ import_one_account (const char *path,
   GConfClient *client)
 {
   gchar *account_name = _account_name_from_key (path);
-  EmpathyAccountSettings *settings;
+  EmpathyAccountSettings *settings = NULL;
   GError *error = NULL;
   GSList *entries = NULL;
   gchar *profile = NULL;