[cpp-xmltooling] branch master updated: CPPXT-127 - Block entity reference nodes during unmarshalling.
Scott Cantor
cantor.2 at osu.edu
Wed Jan 10 12:20:09 EST 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-xmltooling.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=a02314e96d6746d29c5697b504d37f2e04a6e6cd
The following commit(s) were added to refs/heads/master by this push:
new a02314e CPPXT-127 - Block entity reference nodes during unmarshalling.
a02314e is described below
commit a02314e96d6746d29c5697b504d37f2e04a6e6cd
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: 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();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list