tng         2002/08/21 13:58:32

  Modified:    c/src/xercesc/dom/impl DOMDocumentImpl.cpp
  Log:
  DOM fix: initialize data error checking in constructor.
  
  Revision  Changes    Path
  1.21      +5 -3      xml-xerces/c/src/xercesc/dom/impl/DOMDocumentImpl.cpp
  
  Index: DOMDocumentImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/impl/DOMDocumentImpl.cpp,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- DOMDocumentImpl.cpp       16 Aug 2002 19:20:28 -0000      1.20
  +++ DOMDocumentImpl.cpp       21 Aug 2002 20:58:31 -0000      1.21
  @@ -124,7 +124,8 @@
         fDocumentURI(0),
         fUserDataTable(0),
         fRecycleNodePtr(0),
  -      fRecycleBufferPtr(0)
  +      fRecycleBufferPtr(0),
  +      errorChecking(true)
   {
       fNamePool    = new (this) DOMStringPool(257, this);
   };
  @@ -153,7 +154,8 @@
         fDocumentURI(0),
         fUserDataTable(0),
         fRecycleNodePtr(0),
  -      fRecycleBufferPtr(0)
  +      fRecycleBufferPtr(0),
  +      errorChecking(true)
   {
       fNamePool    = new (this) DOMStringPool(257, this);
       try {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to