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 sa...@apache.org on 2005/01/18 09:55:23 UTC

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

samisa      2005/01/18 00:55:23

  Modified:    c/src/soap/xsd HexBinary.cpp
  Log:
  more fixes related to AXISCPP-384
  
  Revision  Changes    Path
  1.3       +2 -0      ws-axis/c/src/soap/xsd/HexBinary.cpp
  
  Index: HexBinary.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/xsd/HexBinary.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- HexBinary.cpp	18 Jan 2005 08:38:46 -0000	1.2
  +++ HexBinary.cpp	18 Jan 2005 08:55:23 -0000	1.3
  @@ -47,6 +47,8 @@
   
   	    m_Buf = new char[strlen (serializedValue) + 1];
   	    strcpy (m_Buf, serializedValue);
  +        // Samisa: serializedValue no more required, hence clean
  +        delete [] serializedValue;
   	    return m_Buf;
       }