From 5e8911bffdda4e16202a6b649d7053f68b938264 Mon Sep 17 00:00:00 2001
From: Alberto Massari <amassari@apache.org>
Date: Thu, 30 Oct 2008 12:20:42 +0000
Subject: [PATCH] Fire startExtSubset and endExtSubset under the same
 conditions (XERCESC-1828)

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@709149 13f79535-47bb-0310-9956-ffa450edef68
---
 src/xercesc/validators/DTD/DTDScanner.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/xercesc/validators/DTD/DTDScanner.cpp b/src/xercesc/validators/DTD/DTDScanner.cpp
index 9bc165089..6acdf045e 100644
--- a/src/xercesc/validators/DTD/DTDScanner.cpp
+++ b/src/xercesc/validators/DTD/DTDScanner.cpp
@@ -2445,7 +2445,7 @@ void DTDScanner::scanExtSubsetDecl(const bool inIncludeSect, const bool isDTD)
     //  If we have a doc type handler and we are not being called recursively
     //  to handle an include section, tell it the ext subset starts
     //
-    if (fDocTypeHandler && !inIncludeSect)
+    if (fDocTypeHandler && isDTD && !inIncludeSect)
         fDocTypeHandler->startExtSubset();
 
     //
@@ -2652,7 +2652,7 @@ void DTDScanner::scanExtSubsetDecl(const bool inIncludeSect, const bool isDTD)
     }
 
     // If we have a doc type handler, tell it the ext subset ends
-    if (fDocTypeHandler && isDTD)
+    if (fDocTypeHandler && isDTD && !inIncludeSect)
         fDocTypeHandler->endExtSubset();
 }
 
-- 
GitLab