]> granicus.if.org Git - neomutt/commitdiff
The assigned value of dom is never used. Remove assignment
authorErik Hovland <erik@hovland.org>
Sun, 15 Mar 2009 13:25:16 +0000 (14:25 +0100)
committerErik Hovland <erik@hovland.org>
Sun, 15 Mar 2009 13:25:16 +0000 (14:25 +0100)
ChangeLog
rfc822.c

index 442798f3ca0bd40806bcffdf6e96aed0b8d308de..406123b685dc5d7532fef8bd00c67ce2abd997d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2009-03-15 14:24 +0100  Erik Hovland  <erik@hovland.org>  (557d52627a0e)
+
+       * alias.c: The file handle will leak if fread fails
+
+2009-03-12 15:16 -0700  Erik Hovland  <erik@hovland.org>  (53bea026a2a2)
+
+       * curs_main.c: resort_index will use menu->current as a index into an
+       array. If menu->current is negative, bad things can happen. So check
+       it before calling resort_index
+
+2009-03-12 16:12 -0700  Erik Hovland  <erik@hovland.org>  (96a72e38e55e)
+
+       * recvcmd.c: 'last' is assigned but never used. Remove assignment.
+
+2009-03-15 13:46 +0100  Rocco Rutte  <pdmef@gmx.net>  (1238dff54a15)
+
+       * ChangeLog, alias.c, attach.c, buffy.c, check_sec.sh, commands.c,
+       compose.c, copy.c, crypt-gpgme.c, crypt.c, edit.c, editmsg.c,
+       gnupgparse.c, handler.c, headers.c, help.c, history.c,
+       imap/message.c, init.c, lib.c, main.c, mbox.c, mh.c, mutt_ssl.c,
+       mutt_ssl_gnutls.c, muttlib.c, pager.c, pattern.c, pgp.c, pgpkey.c,
+       pgppubring.c, pop.c, postpone.c, query.c, recvattach.c, recvcmd.c,
+       rfc1524.c, rfc3676.c, send.c, sendlib.c, smime.c, smtp.c: Use
+       safe_fclose() instead of fclose(), add fclose() to check_sec.sh
+
 2009-03-10 18:39 +0100  NONAKA Kimihiro  <nonakap@gmail.com>  (cc6fede605d4)
 
        * ChangeLog, mh.c: Fix crashes with 64bit time_t. Closes #3184.
index f5d4aee9608edd8a5aaa2ee7c26fc91ead705219..6676d1d5b904f50d026660db7447550689e1c1b9 100644 (file)
--- a/rfc822.c
+++ b/rfc822.c
@@ -816,7 +816,6 @@ int rfc822_valid_msgid (const char *msgid)
    * domain-literal = "[" *(dtext / quoted-pair) "]"
    */
 
-  char* dom;
   unsigned int l, i;
 
   if (!msgid || !*msgid)
@@ -827,7 +826,7 @@ int rfc822_valid_msgid (const char *msgid)
     return -1;
   if (msgid[0] != '<' || msgid[l-1] != '>')
     return -1;
-  if (!(dom = strrchr (msgid, '@')))
+  if (!(strrchr (msgid, '@')))
     return -1;
 
   /* TODO: complete parser */