From 88ca6d7834a9d710dc124ee845fd3c270e33b59a Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Mon, 12 Apr 2021 19:07:15 +0200 Subject: getXPathNode may return nullptr E.g., when "Undefined namespace prefix" error is thrown Change-Id: I9dfcf761dc8463e2679fb41962502689c91cd2f7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113994 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- test/source/xmltesttools.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'test/source/xmltesttools.cxx') diff --git a/test/source/xmltesttools.cxx b/test/source/xmltesttools.cxx index 45a57f5a22f6..fcd6ca5815ac 100644 --- a/test/source/xmltesttools.cxx +++ b/test/source/xmltesttools.cxx @@ -84,6 +84,7 @@ OUString XmlTestTools::getXPath(const xmlDocUniquePtr& pXmlDoc, const OString& r { CPPUNIT_ASSERT(pXmlDoc); xmlXPathObjectPtr pXmlObj = getXPathNode(pXmlDoc, rXPath); + CPPUNIT_ASSERT(pXmlObj); xmlNodeSetPtr pXmlNodes = pXmlObj->nodesetval; CPPUNIT_ASSERT_EQUAL_MESSAGE(OString(OStringLiteral("In <") + pXmlDoc->name + ">, XPath '" + rXPath + "' number of nodes is incorrect").getStr(), 1, xmlXPathNodeSetGetLength(pXmlNodes)); -- cgit