Fixed an uninitialized variable.

2000-08-25  Christopher James Lahey  <clahey@helixcode.com>

	* mail-crypto.c: Fixed an uninitialized variable.

svn path=/trunk/; revision=5057
This commit is contained in:
Christopher James Lahey
2000-08-26 09:16:40 +00:00
committed by Chris Lahey
parent 20925d94eb
commit 52f7c4a13d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-08-25 Christopher James Lahey <clahey@helixcode.com>
* mail-crypto.c: Fixed an uninitialized variable.
2000-08-26 JP Rosevear <jpr@helixcode.com>
* evolution-mail.gnorba: Kill

View File

@ -424,7 +424,7 @@ mail_crypto_openpgp_encrypt (const char *plaintext,
GPtrArray *recipient_list = NULL;
int retval, i, r;
char *path, *argv[12];
char *passphrase, *ciphertext = NULL, *diagnostics = NULL;
char *passphrase = NULL, *ciphertext = NULL, *diagnostics = NULL;
int passwd_fds[2];
char passwd_fd[32];