You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by du...@apache.org on 2005/06/23 05:30:32 UTC

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

dushshantha    2005/06/22 20:30:32

  Modified:    c/tests/auto_build/testcases/server/cpp ComplexLists.cpp
  Log:
  Made a small modification in the Server implementation for the test ComplexLists.
  
  Revision  Changes    Path
  1.2       +0 -6      ws-axis/c/tests/auto_build/testcases/server/cpp/ComplexLists.cpp
  
  Index: ComplexLists.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ComplexLists.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ComplexLists.cpp	30 Mar 2005 09:45:12 -0000	1.1
  +++ ComplexLists.cpp	23 Jun 2005 03:30:32 -0000	1.2
  @@ -36,9 +36,6 @@
   {
   	attrlisterr* ret=new attrlisterr();
   	ret->attrlist_Ref=Value1;
  -	Value1->item.m_Size=1;
  -	Value1->item.m_Array=new namepair*[Value1->item.m_Size];
  -	Value1->item.m_Array[0]=new namepair();
   	Value1->item.m_Array[0]->m_list_Ref=Value0;
   	return ret;
   	
  @@ -47,9 +44,6 @@
   {
   	attrlisterr* ret=new attrlisterr();
   	ret->attrlist_Ref=Value1;
  -	Value1->item.m_Size=1;
  -	Value1->item.m_Array=new namepair*[Value1->item.m_Size];
  -	Value1->item.m_Array[0]=new namepair();
   	Value1->item.m_Array[0]->m_list_Ref=Value0;
   	return ret;
   }