summaryrefslogtreecommitdiff
path: root/core/fxcrt
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-07-25 17:04:49 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-07-25 17:04:49 +0000
commit96b0d1332430e34219334373aeb0f6a85eb8ad68 (patch)
treee50f75e447d6c1dff6e50b4b089af5b1a21b475e /core/fxcrt
parent1f7db295b1deeecb562d6213b3ea17b9168405eb (diff)
downloadpdfium-96b0d1332430e34219334373aeb0f6a85eb8ad68.tar.xz
Introduce ToXMLElement() checked downcast helper function
And use it in place of ASSERT() that the type was correct. Since we can check it, doing so at runtime may help avoid type confusion, and we'll get a nice safe SEGV if the asserted condition ever fails. Change-Id: I46b65a4b70e819a670d7cad7966e0d100f0d9a63 Reviewed-on: https://pdfium-review.googlesource.com/38810 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxcrt')
-rw-r--r--core/fxcrt/xml/cfx_xmlelement.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/fxcrt/xml/cfx_xmlelement.h b/core/fxcrt/xml/cfx_xmlelement.h
index ca5fd5e797..0d3468aba4 100644
--- a/core/fxcrt/xml/cfx_xmlelement.h
+++ b/core/fxcrt/xml/cfx_xmlelement.h
@@ -54,4 +54,10 @@ class CFX_XMLElement : public CFX_XMLNode {
std::map<WideString, WideString> attrs_;
};
+inline CFX_XMLElement* ToXMLElement(CFX_XMLNode* pNode) {
+ return pNode && pNode->GetType() == FX_XMLNODE_Element
+ ? static_cast<CFX_XMLElement*>(pNode)
+ : nullptr;
+}
+
#endif // CORE_FXCRT_XML_CFX_XMLELEMENT_H_