You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2001/11/09 19:10:58 UTC

cvs commit: xml-xerces/c/src/validators/schema SchemaValidator.cpp

tng         01/11/09 10:10:58

  Modified:    c/src/validators/schema SchemaValidator.cpp
  Log:
  Schema Fix: should concatenate all characters for validation.
  
  Revision  Changes    Path
  1.22      +4 -1      xml-xerces/c/src/validators/schema/SchemaValidator.cpp
  
  Index: SchemaValidator.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/schema/SchemaValidator.cpp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- SchemaValidator.cpp	2001/10/23 13:35:36	1.21
  +++ SchemaValidator.cpp	2001/11/09 18:10:58	1.22
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SchemaValidator.cpp,v $
  + * Revision 1.22  2001/11/09 18:10:58  tng
  + * Schema Fix: should concatenate all characters for validation.
  + *
    * Revision 1.21  2001/10/23 13:35:36  tng
    * Schema fix: Resolve notation prefix to an URI.
    *
  @@ -873,6 +876,6 @@
       if (XMLReader::isWhitespace(nextCh))
           fTrailing = true;
   
  -    fDatatypeBuffer.set(toFill.getRawBuffer());
  +    fDatatypeBuffer.append(toFill.getRawBuffer());
   }
   
  
  
  

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