[mpich] MPICH primary repository branch, master, updated. v3.2a2-179-gf17d0ba
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 f17d0ba5d9fa3147913ca0dc8d87847ecb5bb485 (commit) from 51d6c94873957ca8ccbd996db2888e39c3687ed8 (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/f17d0ba5d9fa3147913ca0dc8d87847ecb... commit f17d0ba5d9fa3147913ca0dc8d87847ecb5bb485 Author: artem.v.yalozo <[email protected]> Date: Wed Feb 11 20:31:25 2015 +0400 added missed brackets in MPL_LL_DELETE_VS2008 macro Change-Id: Id7cb0c5122eb04eea7f2c5ea541b97a48ca71df3 Signed-off-by: Pavan Balaji <[email protected]> diff --git a/src/mpl/include/mpl_utlist.h b/src/mpl/include/mpl_utlist.h index cadc0b0..eb5ea0c 100644 --- a/src/mpl/include/mpl_utlist.h +++ b/src/mpl/include/mpl_utlist.h @@ -391,11 +391,11 @@ do { (tail)=(head); \ } else { \ char *_tmp = (char*)(head); \ - while (head->_next && (head->_next != (del))) { \ - head = head->_next; \ + while ((head)->_next && ((head)->_next != (del))) { \ + (head) = (head)->_next; \ } \ - if (head->_next) { \ - head->_next = ((del)->_next); \ + if ((head)->_next) { \ + (head)->_next = ((del)->_next); \ if ((tail) == (del)) \ (tail)=(head); \ } \ ----------------------------------------------------------------------- Summary of changes: src/mpl/include/mpl_utlist.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org