[commit] r1328 - trunk/GME/MgaUtil

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue May 31 09:39:08 CDT 2011


Author: ksmyth
Date: Tue May 31 09:39:08 2011
New Revision: 1328

Log:
return E_POINTER for NULL pointer

Modified:
   trunk/GME/MgaUtil/MgaLauncher.cpp

Modified: trunk/GME/MgaUtil/MgaLauncher.cpp
==============================================================================
--- trunk/GME/MgaUtil/MgaLauncher.cpp	Thu May 26 16:17:41 2011	(r1327)
+++ trunk/GME/MgaUtil/MgaLauncher.cpp	Tue May 31 09:39:08 2011	(r1328)
@@ -669,7 +669,7 @@
 STDMETHODIMP CMgaLauncher::RunComponent(BSTR progid, IMgaProject *project, IMgaFCO *focusobj, IMgaFCOs *selectedobjs, long param)
 {
 	if( project == NULL )
-		COMRETURN(E_INVALIDARG);
+		COMRETURN(E_POINTER);
 
 	COMTRY
 	{


More information about the gme-commit mailing list