You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ne...@apache.org on 2003/11/09 00:37:00 UTC

cvs commit: xml-xerces/c/src/xercesc/util/Transcoders/Cygwin CygwinTransService.cpp

neilg       2003/11/08 15:37:00

  Modified:    c/src/xercesc/util/Transcoders/Cygwin CygwinTransService.cpp
  Log:
  fix for bug 24287 by Abe Backus.
  
  Revision  Changes    Path
  1.9       +5 -2      xml-xerces/c/src/xercesc/util/Transcoders/Cygwin/CygwinTransService.cpp
  
  Index: CygwinTransService.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/Transcoders/Cygwin/CygwinTransService.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- CygwinTransService.cpp	17 May 2003 16:32:17 -0000	1.8
  +++ CygwinTransService.cpp	8 Nov 2003 23:37:00 -0000	1.9
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.9  2003/11/08 23:37:00  neilg
  + * fix for bug 24287 by Abe Backus.
  + *
    * Revision 1.8  2003/05/17 16:32:17  knoaman
    * Memory manager implementation : transcoder update.
    *
  @@ -587,7 +590,7 @@
       // Strings are equal until proven otherwise.
       while ( ( countChar < maxChars ) && ( !theResult ) )
       {
  -        theResult = (int)(args[1][countChar]) - (int)(args[0][countChar]);
  +        theResult = (int)(args[0][countChar]) - (int)(args[1][countChar]);
           ++countChar;
       }
   
  
  
  

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