[commit] r1254 - trunk/GME/Mga

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Wed Apr 6 16:01:44 CDT 2011


Author: ksmyth
Date: Wed Apr  6 16:01:44 2011
New Revision: 1254

Log:
One less ASSERT failure and exception

Modified:
   trunk/GME/Mga/MgaProject.cpp

Modified: trunk/GME/Mga/MgaProject.cpp
==============================================================================
--- trunk/GME/Mga/MgaProject.cpp	Wed Apr  6 16:00:19 2011	(r1253)
+++ trunk/GME/Mga/MgaProject.cpp	Wed Apr  6 16:01:44 2011	(r1254)
@@ -1153,7 +1153,8 @@
 				break;
 			}
 		}
-		if(j == allclients.end()) COMTHROW(E_MGA_NAME_NOT_FOUND);
+		if(j == allclients.end()) 
+			return E_MGA_NAME_NOT_FOUND;
 	}
     COMCATCH(;);
 }


More information about the gme-commit mailing list