aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-crypto.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-26 17:16:40 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-26 17:16:40 +0800
commit52f7c4a13dab12591d3533efbd9a520ec6374d13 (patch)
tree5d4d14cb253d5b946020afc3ce83dad71976a3a8 /mail/mail-crypto.c
parent20925d94eb5649df410820e67017a299ce5d867d (diff)
downloadgsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar.gz
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar.bz2
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar.lz
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar.xz
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.tar.zst
gsoc2013-evolution-52f7c4a13dab12591d3533efbd9a520ec6374d13.zip
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
Diffstat (limited to 'mail/mail-crypto.c')
-rw-r--r--mail/mail-crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-crypto.c b/mail/mail-crypto.c
index 506a4a256d..dc8242dbc3 100644
--- a/mail/mail-crypto.c
+++ b/mail/mail-crypto.c
@@ -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];