diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-26 17:16:40 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-26 17:16:40 +0800 |
commit | 52f7c4a13dab12591d3533efbd9a520ec6374d13 (patch) | |
tree | 5d4d14cb253d5b946020afc3ce83dad71976a3a8 | |
parent | 20925d94eb5649df410820e67017a299ce5d867d (diff) | |
download | gsoc2013-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
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-crypto.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 4d9118c63d..6474657304 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -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 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]; |