You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ca...@apache.org on 2006/03/17 22:33:59 UTC

svn commit: r386725 - /xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp

Author: cargilld
Date: Fri Mar 17 13:33:58 2006
New Revision: 386725

URL: http://svn.apache.org/viewcvs?rev=386725&view=rev
Log:
Fix check for annotations.

Modified:
    xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp

Modified: xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp?rev=386725&r1=386724&r2=386725&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp (original)
+++ xerces/c/trunk/src/xercesc/validators/schema/TraverseSchema.cpp Fri Mar 17 13:33:58 2006
@@ -8815,7 +8815,7 @@
     XMLCh nextCh = *srcVal;
     while (nextCh)
     {
-        if (nextCh <= chOpenAngle) {
+        if (nextCh <= chCloseAngle) {
             switch (nextCh) {
             case chDoubleQuote:        
                 aBuf.append(chAmpersand);



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