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:
David Malcolm
2004-09-30 01:47:23 +00:00
committed by Michael Zucci
parent 5103be62c0
commit a575a72297
2 changed files with 5 additions and 1 deletions

View File

@ -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>
* em-account-editor.c: Changed the SSL option menu labels.

View File

@ -698,7 +698,7 @@ upgrade_passwords_1_2(void)
{
xmlNodePtr root, entry;
char *filename;
xmlDocPtr priv_doc;
xmlDocPtr priv_doc = NULL;
struct stat st;
int work = 0, res = -1;