You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by du...@apache.org on 2005/05/18 13:04:50 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/server/cpp ADEC_MAST_Port.cpp

dushshantha    2005/05/18 04:04:50

  Modified:    c/tests/auto_build/testcases/server/cpp ADEC_MAST_Port.cpp
  Log:
  modified the server implementation
  
  Revision  Changes    Path
  1.2       +4 -2      ws-axis/c/tests/auto_build/testcases/server/cpp/ADEC_MAST_Port.cpp
  
  Index: ADEC_MAST_Port.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ADEC_MAST_Port.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ADEC_MAST_Port.cpp	18 May 2005 05:44:55 -0000	1.1
  +++ ADEC_MAST_Port.cpp	18 May 2005 11:04:50 -0000	1.2
  @@ -56,8 +56,10 @@
   	cal = (Value1 * Value2 * Value3);
   	outParam->NonAllIntValue = square;
   	outParam->NonAllDoubleValue = cal;
  -	outParam->length = Value1;
  -	outParam->depth = Value2;
  +	outParam->length = new int;
  +	*(outParam->length) = Value1;
  +	outParam->depth = new double;
  +	*(outParam->depth) = Value2;
   	outParam->color = Value0;
   
   	if(cal != 0)