[xmltooling] 01/02: CPPXT-127 - Block entity reference nodes during unmarshalling.
Etienne Dysli Metref
edm-guest at moszumanska.debian.org
Fri Jan 12 15:55:41 UTC 2018
This is an automated email from the git hooks/post-receive script.
edm-guest pushed a commit to branch maint-1.6
in repository xmltooling.
commit f8eeeb9076ffbff54cbf819c6c92b25c40db52ae
Author: Scott Cantor <cantor.2 at osu.edu>
Date: Wed Jan 10 12:20:07 2018 -0500
CPPXT-127 - Block entity reference nodes during unmarshalling.
https://issues.shibboleth.net/jira/browse/CPPXT-127
---
xmltooling/io/AbstractXMLObjectUnmarshaller.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/xmltooling/io/AbstractXMLObjectUnmarshaller.cpp b/xmltooling/io/AbstractXMLObjectUnmarshaller.cpp
index ae2709e..487348e 100644
--- a/xmltooling/io/AbstractXMLObjectUnmarshaller.cpp
+++ b/xmltooling/io/AbstractXMLObjectUnmarshaller.cpp
@@ -206,6 +206,8 @@ void AbstractXMLObjectUnmarshaller::unmarshallContent(const DOMElement* domEleme
else if (childNode->getNodeType() == DOMNode::TEXT_NODE || childNode->getNodeType() == DOMNode::CDATA_SECTION_NODE) {
m_log.debug("processing text content at position (%d)", position);
setTextContent(childNode->getNodeValue(), position);
+ } else if (childNode->getNodeType() == DOMNode::ENTITY_REFERENCE_NODE || childNode->getNodeType() == DOMNode::ENTITY_NODE) {
+ throw UnmarshallingException("Unmarshaller found Entity/Reference node.");
}
childNode = childNode->getNextSibling();
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-shibboleth/xmltooling.git
More information about the Pkg-shibboleth-devel
mailing list