[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-96-g25b8bac

Service Account noreply at mpich.org
Wed Jan 20 11:20:30 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  25b8bac98d7e78fe0d4fcef9dc4243425c39ba79 (commit)
      from  e6c7b7bf1f6a5130990643f8bbd607517366ab4b (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/25b8bac98d7e78fe0d4fcef9dc4243425c39ba79

commit 25b8bac98d7e78fe0d4fcef9dc4243425c39ba79
Author: Rob Latham <robl at mcs.anl.gov>
Date:   Wed Jan 20 11:18:24 2016 -0600

    fix missing 'break' in error case
    
    EDQUOT should not fall through to default.  Thanks for catching it,
    Michael Raymond <mraymond at sgi.com>
    
    No reviewer.

diff --git a/src/mpi/romio/adio/common/error.c b/src/mpi/romio/adio/common/error.c
index e990a5e..20e211d 100644
--- a/src/mpi/romio/adio/common/error.c
+++ b/src/mpi/romio/adio/common/error.c
@@ -114,7 +114,7 @@ int ADIOI_Err_create_code(const char *myname, const char *filename, int my_errno
 		    MPIR_ERR_RECOVERABLE, myname, __LINE__,
 		    MPI_ERR_QUOTA,
 		    "**filequota", 0);
-
+	    break;
         default:
             error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
                                               myname, __LINE__, MPI_ERR_IO, "**io",

-----------------------------------------------------------------------

Summary of changes:
 src/mpi/romio/adio/common/error.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list