]> granicus.if.org Git - neomutt/commitdiff
gpgme: check result for signatures pointer (closes: #2199)
authorTAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp>
Sun, 1 Apr 2007 22:40:02 +0000 (15:40 -0700)
committerTAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp>
Sun, 1 Apr 2007 22:40:02 +0000 (15:40 -0700)
ChangeLog
crypt-gpgme.c

index 28512138534532a2f1f4e2586740ab95ef0f6484..5be6224cd7a4559dd8b681f23681c4a29d4afd35 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-2007-04-01 14:59 -0700  Brendan Cully  <brendan@kublai.com>  (c01a36ebe339)
+2007-04-01 15:33 -0700  Brendan Cully  <brendan@kublai.com>  (3a81b3793f77)
+
+       * doc/muttbug.man: Update flea man page to current addresses
+
+       * muttbug.sh.in: Adjust flea to use new submission address; check
+       email for @
 
        * doc/muttbug.man, muttbug.sh.in: Restore muttbug
 
index a64f04afcf87b0468756fceabae242ebc67aafa8..718b235ca1a192c05edb71b45cdb87ca8761c026 100644 (file)
@@ -766,7 +766,7 @@ static int get_micalg (gpgme_ctx_t ctx, char *buf, size_t buflen)
 
   *buf = 0;
   result = gpgme_op_sign_result (ctx);
-  if (result)
+  if (result && result->signatures)
     {
       algorithm_name = gpgme_hash_algo_name (result->signatures->hash_algo);
       if (algorithm_name)