Skip to content
Snippets Groups Projects
Commit dd0b8793 authored by Tinny Ng's avatar Tinny Ng
Browse files

DOM fix: initialize data error checking in constructor.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174160 13f79535-47bb-0310-9956-ffa450edef68
parent 999c9519
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,8 @@ DOMDocumentImpl::DOMDocumentImpl()
fDocumentURI(0),
fUserDataTable(0),
fRecycleNodePtr(0),
fRecycleBufferPtr(0)
fRecycleBufferPtr(0),
errorChecking(true)
{
fNamePool = new (this) DOMStringPool(257, this);
};
......@@ -153,7 +154,8 @@ DOMDocumentImpl::DOMDocumentImpl(const XMLCh *fNamespaceURI,
fDocumentURI(0),
fUserDataTable(0),
fRecycleNodePtr(0),
fRecycleBufferPtr(0)
fRecycleBufferPtr(0),
errorChecking(true)
{
fNamePool = new (this) DOMStringPool(257, this);
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment