You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ga...@apache.org on 2007/08/21 11:08:31 UTC

svn commit: r568031 - /xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp

Author: gareth
Date: Tue Aug 21 02:08:30 2007
New Revision: 568031

URL: http://svn.apache.org/viewvc?rev=568031&view=rev
Log:
correct max heap alloc size

Modified:
    xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp

Modified: xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp
URL: http://svn.apache.org/viewvc/xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp?rev=568031&r1=568030&r2=568031&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMDocumentImpl.cpp Tue Aug 21 02:08:30 2007
@@ -51,7 +51,7 @@
 
 // The chunk size to allocate from the system allocator.
 static const XMLSize_t kInitialHeapAllocSize =  0x4000;
-static const XMLSize_t kMaxHeapAllocSize     = 020000;
+static const XMLSize_t kMaxHeapAllocSize     = 0x20000;
 static const XMLSize_t kMaxSubAllocationSize =  0x1000;  // Any request for more bytes
                                                          // than this will be handled by
                                                          // allocating directly with system.



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