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 sa...@apache.org on 2004/09/09 09:05:45 UTC

cvs commit: ws-axis/c/src/soap HeaderBlock.cpp

samisa      2004/09/09 00:05:45

  Modified:    c/src/soap HeaderBlock.cpp
  Log:
  Jira - AXISCPP-155 : Fixed roots of warning messages
  
  Revision  Changes    Path
  1.32      +4 -2      ws-axis/c/src/soap/HeaderBlock.cpp
  
  Index: HeaderBlock.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/HeaderBlock.cpp,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- HeaderBlock.cpp	24 Aug 2004 15:20:57 -0000	1.31
  +++ HeaderBlock.cpp	9 Sep 2004 07:05:44 -0000	1.32
  @@ -512,7 +512,8 @@
   
       if (localname)
       {
  -        Attribute* pAttribute = new Attribute(localname, prefix, value);
  +        //Attribute* pAttribute = new Attribute(localname, prefix, value); 
  +        pAttribute = new Attribute(localname, prefix, value); // Samisa - possible bug in line above 
           m_attributes.push_back(pAttribute);
       }
   
  @@ -727,4 +728,5 @@
       return NULL;
   }
   
  -AXIS_CPP_NAMESPACE_END
  \ No newline at end of file
  +AXIS_CPP_NAMESPACE_END
  +