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/08/14 00:46:20 UTC

cvs commit: xml-xerces/c/src/xercesc/parsers AbstractDOMParser.cpp

neilg       2003/08/13 15:46:20

  Modified:    c/src/xercesc/parsers AbstractDOMParser.cpp
  Log:
  fix to bug 22177; thanks to Alberto Massari
  
  Revision  Changes    Path
  1.47      +2 -2      xml-xerces/c/src/xercesc/parsers/AbstractDOMParser.cpp
  
  Index: AbstractDOMParser.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/AbstractDOMParser.cpp,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- AbstractDOMParser.cpp	10 Jul 2003 19:48:24 -0000	1.46
  +++ AbstractDOMParser.cpp	13 Aug 2003 22:46:20 -0000	1.47
  @@ -753,7 +753,7 @@
   
   void AbstractDOMParser::startDocument()
   {
  -    fDocument = (DOMDocumentImpl *)DOMImplementation::getImplementation()->createDocument();
  +    fDocument = (DOMDocumentImpl *)DOMImplementation::getImplementation()->createDocument(fMemoryManager);
       // Just set the document as the current parent and current node
       fCurrentParent = fDocument;
       fCurrentNode   = fDocument;
  
  
  

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