[omniORB] Bug in omniorbpy tuple marshalling

Teemu Torma teemu at torma.org
Thu Dec 16 16:27:11 GMT 2004


There is a small typo in pyMarshal.cc (wrong variable):

--- modules/pyMarshal.cc	6 Oct 2004 22:36:32 -0000	1.4
+++ modules/pyMarshal.cc	16 Dec 2004 15:24:02 -0000
@@ -1220,7 +1220,7 @@
 			    BAD_PARAM_PythonValueOutOfRange, compstatus);
 #endif
 	  }
-	  else if (!PyInt_Check(a_o))
+	  else if (!PyInt_Check(t_o))
 	    OMNIORB_THROW(BAD_PARAM, BAD_PARAM_WrongPythonType, compstatus);
 	}
 	return;

Teemu



More information about the omniORB-list mailing list