[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-206-g9f06000
Service Account
noreply at mpich.org
Thu Feb 18 17:19:25 CST 2016
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 "MPICH primary repository".
The branch, master has been updated
via 9f06000c160665b8a39b49b92c950b47bbf5dea1 (commit)
from 9ee96c63c52299e0bc382d0a5817eedaabdceba5 (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.mpich.org/mpich.git/commitdiff/9f06000c160665b8a39b49b92c950b47bbf5dea1
commit 9f06000c160665b8a39b49b92c950b47bbf5dea1
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date: Thu Feb 18 16:06:24 2016 -0600
mpl/dbg: add missing call to va_end
Coverity #122176.
No reviewer.
diff --git a/src/mpl/src/dbg/mpl_dbg.c b/src/mpl/src/dbg/mpl_dbg.c
index 761e147..9d4eadf 100644
--- a/src/mpl/src/dbg/mpl_dbg.c
+++ b/src/mpl/src/dbg/mpl_dbg.c
@@ -186,6 +186,7 @@ int MPL_dbg_outevent(const char *file, int line, int class, int kind, const char
str = va_arg(list, char *);
fprintf(dbg_fp, "%d\t%d\t%llx[%d]\t%d\t%f\t%s\t%d\t%s\n",
world_num, world_rank, threadID, pid, class, curtime, file, line, str);
+ va_end(list);
break;
case 1:
va_start(list, fmat);
-----------------------------------------------------------------------
Summary of changes:
src/mpl/src/dbg/mpl_dbg.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list