You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/06/25 17:31:50 UTC

cvs commit: xml-xerces/c/src/util XML88591Transcoder.cpp

peiyongz    01/06/25 08:31:50

  Modified:    c/src/util XML88591Transcoder.cpp
  Log:
  fix bug[1393]: Converting from Unicode to iso8859
  
  Revision  Changes    Path
  1.7       +1 -1      xml-xerces/c/src/util/XML88591Transcoder.cpp
  
  Index: XML88591Transcoder.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XML88591Transcoder.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XML88591Transcoder.cpp	2000/05/15 22:31:21	1.6
  +++ XML88591Transcoder.cpp	2001/06/25 15:31:47	1.7
  @@ -151,7 +151,7 @@
       while (srcPtr < srcEnd)
       {
           // If its legal, take it and jump back to top
  -        if (*srcPtr < 0x256)
  +        if (*srcPtr < 256)  
           {
               *destPtr++ = XMLByte(*srcPtr++);
               continue;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org