You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/02/07 05:05:05 UTC

cvs commit: xml-xalan/c/src/PlatformSupport DOMStringPrintWriter.cpp

dbertoni    01/02/06 20:05:05

  Modified:    c/src/PlatformSupport DOMStringPrintWriter.cpp
  Log:
  Removed bogus assert.
  
  Revision  Changes    Path
  1.11      +0 -1      xml-xalan/c/src/PlatformSupport/DOMStringPrintWriter.cpp
  
  Index: DOMStringPrintWriter.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringPrintWriter.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DOMStringPrintWriter.cpp	2001/01/08 18:13:48	1.10
  +++ DOMStringPrintWriter.cpp	2001/02/07 04:05:05	1.11
  @@ -125,7 +125,6 @@
   #endif
   
   	assert(s != 0);
  -	assert(theLength == UINT_MAX || length(s) >= theOffset + theLength);
   
   	append(m_outputString, (s + theOffset), theLength);
   }