]> granicus.if.org Git - neomutt/commitdiff
minor code fixes
authorRichard Russon <rich@flatcap.org>
Sun, 3 Dec 2017 02:39:14 +0000 (02:39 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 7 Dec 2017 12:20:06 +0000 (12:20 +0000)
conn/sasl.c
mutt/debug.c
mutt_options.h
ncrypt/crypt_gpgme.c
ncrypt/pgp.c

index f4f1e28bdd7f364a88fe535e9fdcb30df10aa369..f51b6eade7cd89c28dc088078f5e9eebf5a0d393 100644 (file)
@@ -721,7 +721,7 @@ void mutt_sasl_setup_conn(struct Connection *conn, sasl_conn_t *saslconn)
   conn->conn_poll = mutt_sasl_conn_poll;
 }
 
-/*
+/**
  * mutt_sasl_done - Invoke when processing is complete.
  *
  * This is a cleanup function, used to free all memory used by the library.
index ef50380ade2db530374403e2071348d74c01d736..2d8090faa8cb9f0ac9d098cc966024d87360f724 100644 (file)
@@ -50,7 +50,6 @@ int mutt_debug_real(const char *function, const char *file, int line, int level,
   va_list ap;
   va_start(ap, level);
   const char *fmt = va_arg(ap, const char *);
-  vfprintf(stderr, fmt, ap);
   int ret = vfprintf(stderr, fmt, ap);
   va_end(ap);
   return ret;
index d8dfd350e0ba1c51e8e0d7670e3f7cae20bf7346..a487c50ef71d9c502bc19cbb703851ec148f6a79 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * @file
- * Notmuch virtual mailbox type
+ * Definitions of NeoMutt Configuration
  *
  * @authors
  * Copyright (C) 2016 Bernard Pratz <z+mutt+pub@m0g.net>
index 212a56bc89b25c780c31014e3ea7240617721013..8dafb98042610a593e0b8373181f614846c419d6 100644 (file)
@@ -1944,9 +1944,9 @@ int pgp_gpgme_decrypt_mime(FILE *fpin, FILE **fpout, struct Body *b, struct Body
   struct Body *first_part = b;
   int is_signed = 0;
   bool need_decode = false;
-  int saved_type;
-  LOFF_T saved_offset;
-  size_t saved_length;
+  int saved_type = 0;
+  LOFF_T saved_offset = 0;
+  size_t saved_length = 0;
   FILE *decoded_fp = NULL;
   int rc = 0;
 
index 53be76194b58209af9eac17078738c12966eff7e..07ca99eae319afd46a8d5a73ba94d9711f61153c 100644 (file)
@@ -955,9 +955,9 @@ int pgp_decrypt_mime(FILE *fpin, FILE **fpout, struct Body *b, struct Body **cur
   struct State s;
   struct Body *p = b;
   bool need_decode = false;
-  int saved_type;
-  LOFF_T saved_offset;
-  size_t saved_length;
+  int saved_type = 0;
+  LOFF_T saved_offset = 0;
+  size_t saved_length = 0;
   FILE *decoded_fp = NULL;
   int rc = 0;