diff options
Diffstat (limited to 'plugins/bbdb/gaimbuddies.c')
-rw-r--r-- | plugins/bbdb/gaimbuddies.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/bbdb/gaimbuddies.c b/plugins/bbdb/gaimbuddies.c index 51ca8bcec7..e98dadaeb1 100644 --- a/plugins/bbdb/gaimbuddies.c +++ b/plugins/bbdb/gaimbuddies.c @@ -92,10 +92,13 @@ bbdb_sync_buddy_list_check (void) blist_path = g_build_path ("/", getenv ("HOME"), ".gaim/blist.xml", NULL); if (stat (blist_path, &statbuf) < 0) { + g_free (blist_path); g_object_unref (G_OBJECT (gconf)); return; } + g_free (blist_path); + /* Reprocess the buddy list if it's been updated. */ last_sync_str = gconf_client_get_string (gconf, GCONF_KEY_GAIM_LAST_SYNC, NULL); if (last_sync_str == NULL || ! strcmp (last_sync_str, "")) |