[Mobies-commit] [commit] r4160 - UDM/trunk/src/UdmGme

ksmyth at redhat1.isis.vanderbilt.edu ksmyth at redhat1.isis.vanderbilt.edu
Thu Feb 14 13:19:36 CST 2013


Author: ksmyth
Date: Thu Feb 14 13:19:35 2013
New Revision: 4160

Log:
Fix error with out-of-proc or inter-apartment calls (A null reference pointer was passed to the stub)

Modified:
   UDM/trunk/src/UdmGme/UdmGme.cpp

Modified: UDM/trunk/src/UdmGme/UdmGme.cpp
==============================================================================
--- UDM/trunk/src/UdmGme/UdmGme.cpp	Tue Jan 29 23:26:54 2013	(r4159)
+++ UDM/trunk/src/UdmGme/UdmGme.cpp	Thu Feb 14 13:19:35 2013	(r4160)
@@ -2198,7 +2198,8 @@
 
 		
 		IMgaObjectPtr po;
-		COMTHROW(objself->GetParent(&po, NULL));
+		objtype_enum objtype;
+		COMTHROW(objself->GetParent(&po, &objtype));
 		IMgaModelPtr m(po);
 
 		if(m) 


More information about the Mobies-commit mailing list