Removed unused and uninitialised "url" local that gets g_free-ed
2004-04-16 David Malcolm <dmalcolm@redhat.com> * importers/netscape-importer.c (netscape_import_accounts): Removed unused and uninitialised "url" local that gets g_free-ed svn path=/trunk/; revision=25507
This commit is contained in:
committed by
Michael Zucci
parent
8e470eb614
commit
6a2d1a99a1
@ -1,3 +1,8 @@
|
||||
2004-04-16 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* importers/netscape-importer.c (netscape_import_accounts):
|
||||
Removed unused and uninitialised "url" local that gets g_free-ed
|
||||
|
||||
2004-04-15 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* mail-config.c (config_write_style): Change the message display
|
||||
|
||||
@ -1545,7 +1545,7 @@ netscape_import_accounts (NsImporter *importer)
|
||||
|
||||
servers = g_strsplit (imap, ",", 0);
|
||||
for (i = 0; servers[i] != NULL; i++) {
|
||||
char *serverstr, *name, *url;
|
||||
char *serverstr, *name;
|
||||
const char *username;
|
||||
EAccount *imap;
|
||||
|
||||
@ -1580,7 +1580,6 @@ netscape_import_accounts (NsImporter *importer)
|
||||
imap->enabled = TRUE;
|
||||
|
||||
mail_config_add_account(imap);
|
||||
g_free (url);
|
||||
g_free (serverstr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user