From 29fc885e2a955c20fefb95fd6ab952dbdae23ed9 Mon Sep 17 00:00:00 2001
From: Gareth Reakes <gareth@apache.org>
Date: Wed, 20 Aug 2003 22:15:29 +0000
Subject: [PATCH] Corrected silly mistakes due to working to late at night
 (thankyou Neil).

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175158 13f79535-47bb-0310-9956-ffa450edef68
---
 doc/program-dom.xml                       |  2 +-
 src/xercesc/parsers/AbstractDOMParser.cpp |  3 +--
 src/xercesc/util/XMLUni.cpp               | 14 ++++++--------
 3 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/doc/program-dom.xml b/doc/program-dom.xml
index 4f5409c4b..83b6c561a 100644
--- a/doc/program-dom.xml
+++ b/doc/program-dom.xml
@@ -1283,7 +1283,7 @@
             </table>
             <p/>
             <table>
-                <tr><th colspan="2"><em>http://apache.org/xml/properties/parser-use-DOMDocument-from-Implemenation</em></th></tr>
+                <tr><th colspan="2"><em>http://apache.org/xml/properties/parser-use-DOMDocument-from-Implementation</em></th></tr>
                 <tr><th><em>Description</em></th><td>This property allows the user to specify a set of features
                             which the parser will then use to acquire an implementation from which it will create
                             the DOMDocument to use when reading in an XML file.
diff --git a/src/xercesc/parsers/AbstractDOMParser.cpp b/src/xercesc/parsers/AbstractDOMParser.cpp
index 15fa5d3c1..49611d591 100644
--- a/src/xercesc/parsers/AbstractDOMParser.cpp
+++ b/src/xercesc/parsers/AbstractDOMParser.cpp
@@ -179,8 +179,7 @@ void AbstractDOMParser::cleanUp()
     delete fScanner;
     delete fGrammarResolver;
     delete fURIStringPool;
-
-    delete[] fImplementationFeatures;
+    fMemoryManager->deallocate(fImplementationFeatures);
 
     if (fValidator)
         delete fValidator;
diff --git a/src/xercesc/util/XMLUni.cpp b/src/xercesc/util/XMLUni.cpp
index 4bd1eb46f..0433156ab 100644
--- a/src/xercesc/util/XMLUni.cpp
+++ b/src/xercesc/util/XMLUni.cpp
@@ -1130,19 +1130,17 @@ const XMLCh XMLUni::fgXercesScannerName[] =
 };
 
 //Property
-//Xerces: http://apache.org/xml/properties/parser-use-DOMDocument-from-Implemenation
+//Xerces: http://apache.org/xml/properties/parser-use-DOMDocument-from-Implementation
 const XMLCh XMLUni::fgXercesParserUseDocumentFromImplementation[] =
 {
         chLatin_h, chLatin_t, chLatin_t, chLatin_p, chColon, chForwardSlash
     ,   chForwardSlash, chLatin_a, chLatin_p, chLatin_a, chLatin_c, chLatin_h
     ,   chLatin_e, chPeriod, chLatin_o, chLatin_r, chLatin_g, chForwardSlash
-    ,   chLatin_x, chLatin_m, chLatin_l, chForwardSlash, chLatin_p, chLatin_r
-    ,   chLatin_o, chLatin_p, chLatin_e, chLatin_r, chLatin_t, chLatin_i
-    ,   chLatin_e, chLatin_s, chForwardSlash, chLatin_f, chLatin_g, chLatin_X
-    ,   chLatin_e, chLatin_r, chLatin_c, chLatin_e, chLatin_s, chLatin_P, chLatin_a
-    ,   chLatin_r, chLatin_s, chLatin_e, chLatin_r, chLatin_U, chLatin_s, chLatin_e 
-    ,   chLatin_D, chLatin_o, chLatin_c, chLatin_u, chLatin_m, chLatin_e, chLatin_n 
-    ,   chLatin_t, chLatin_F, chLatin_r, chLatin_o, chLatin_m, chLatin_I, chLatin_m
+    ,   chLatin_x, chLatin_m, chLatin_l, chForwardSlash, chLatin_p, chLatin_a
+    ,   chLatin_r, chLatin_s, chLatin_e, chLatin_r, chDash, chLatin_u, chLatin_s
+    ,   chLatin_e, chDash, chLatin_D, chLatin_O, chLatin_M, chLatin_D, chLatin_o
+    ,   chLatin_c, chLatin_u, chLatin_m, chLatin_e, chLatin_n, chLatin_t, chDash
+    ,   chLatin_f, chLatin_r, chLatin_o, chLatin_m, chDash, chLatin_I, chLatin_m
     ,   chLatin_p, chLatin_l, chLatin_e, chLatin_m, chLatin_e, chLatin_n, chLatin_t
     ,   chLatin_a, chLatin_t, chLatin_i, chLatin_o, chLatin_n, chNull
 };
-- 
GitLab