[MOAB-dev] r2083 - MOAB/trunk/parallel

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Tue Sep 23 15:16:42 CDT 2008


Author: kraftche
Date: 2008-09-23 15:16:42 -0500 (Tue, 23 Sep 2008)
New Revision: 2083

Modified:
   MOAB/trunk/parallel/ReadParallel.cpp
Log:
fix ignored error code during parallel read

Modified: MOAB/trunk/parallel/ReadParallel.cpp
===================================================================
--- MOAB/trunk/parallel/ReadParallel.cpp	2008-09-23 20:16:06 UTC (rev 2082)
+++ MOAB/trunk/parallel/ReadParallel.cpp	2008-09-23 20:16:42 UTC (rev 2083)
@@ -330,7 +330,7 @@
           }
 
             // add the received entities to this fileset if I wasn't the reader
-          if (!i_read)
+          if (!i_read && MB_SUCCESS == tmp_result)
             tmp_result = mbImpl->add_entities(file_set, entities);
           
           break;




More information about the moab-dev mailing list