[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
David Levine |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1a0dcd0a540e3af64ff63d84839336bf8c85ec40 |
Date: |
Sun, 08 Jan 2012 19:46:52 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".
The branch, master has been updated
via 1a0dcd0a540e3af64ff63d84839336bf8c85ec40 (commit)
from 060b69724738b7b3d447843bfc5146f24e07fb0a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=1a0dcd0a540e3af64ff63d84839336bf8c85ec40
commit 1a0dcd0a540e3af64ff63d84839336bf8c85ec40
Author: David Levine <address@hidden>
Date: Sun Jan 8 13:46:47 2012 -0600
gcc -Wempty-body warned that the check of the result from the call to
parse_mime() was ignored. It has been that way since the beginning of history
and was probably of no consequence, but fixed anyway.
diff --git a/uip/mhlist.c b/uip/mhlist.c
index 6ef455d..d698668 100644
--- a/uip/mhlist.c
+++ b/uip/mhlist.c
@@ -280,7 +280,7 @@ do_cache:
adios (NULL, "out of memory");
ctp = cts;
- if ((ct = parse_mime (file)));
+ if ((ct = parse_mime (file)))
*ctp++ = ct;
} else {
/*
diff --git a/uip/mhn.c b/uip/mhn.c
index 2ce21d3..fe728f9 100644
--- a/uip/mhn.c
+++ b/uip/mhn.c
@@ -563,7 +563,7 @@ do_cache:
adios (NULL, "out of memory");
ctp = cts;
- if ((ct = parse_mime (file)));
+ if ((ct = parse_mime (file)))
*ctp++ = ct;
} else {
/*
diff --git a/uip/mhshow.c b/uip/mhshow.c
index 722dcf6..4667e34 100644
--- a/uip/mhshow.c
+++ b/uip/mhshow.c
@@ -346,7 +346,7 @@ do_cache:
adios (NULL, "out of memory");
ctp = cts;
- if ((ct = parse_mime (file)));
+ if ((ct = parse_mime (file)))
*ctp++ = ct;
} else {
/*
diff --git a/uip/mhstore.c b/uip/mhstore.c
index 5bc8daa..ff7724c 100644
--- a/uip/mhstore.c
+++ b/uip/mhstore.c
@@ -292,7 +292,7 @@ do_cache:
adios (NULL, "out of memory");
ctp = cts;
- if ((ct = parse_mime (file)));
+ if ((ct = parse_mime (file)))
*ctp++ = ct;
} else {
/*
diff --git a/uip/mhtest.c b/uip/mhtest.c
index 022f6c4..c884ffe 100644
--- a/uip/mhtest.c
+++ b/uip/mhtest.c
@@ -271,7 +271,7 @@ do_cache:
adios (NULL, "out of memory");
ctp = cts;
- if ((ct = parse_mime (file)));
+ if ((ct = parse_mime (file)))
*ctp++ = ct;
} else {
/*
-----------------------------------------------------------------------
Summary of changes:
uip/mhlist.c | 2 +-
uip/mhn.c | 2 +-
uip/mhshow.c | 2 +-
uip/mhstore.c | 2 +-
uip/mhtest.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1a0dcd0a540e3af64ff63d84839336bf8c85ec40,
David Levine <=