fix uninitialised pointer.
2004-09-30 David Malcolm <dmalcolm@redhat.com> * em-migrate.c (upgrade_passwords_1_2): fix uninitialised pointer. svn path=/trunk/; revision=27433
This commit is contained in:

committed by
Michael Zucci

parent
5103be62c0
commit
a575a72297
@ -1,3 +1,7 @@
|
|||||||
|
2004-09-30 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
|
* em-migrate.c (upgrade_passwords_1_2): fix uninitialised pointer.
|
||||||
|
|
||||||
2004-09-27 Jeffrey Stedfast <fejj@novell.com>
|
2004-09-27 Jeffrey Stedfast <fejj@novell.com>
|
||||||
|
|
||||||
* em-account-editor.c: Changed the SSL option menu labels.
|
* em-account-editor.c: Changed the SSL option menu labels.
|
||||||
|
@ -698,7 +698,7 @@ upgrade_passwords_1_2(void)
|
|||||||
{
|
{
|
||||||
xmlNodePtr root, entry;
|
xmlNodePtr root, entry;
|
||||||
char *filename;
|
char *filename;
|
||||||
xmlDocPtr priv_doc;
|
xmlDocPtr priv_doc = NULL;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int work = 0, res = -1;
|
int work = 0, res = -1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user