From 1a1828648f3c06580ffe7a9f78c557a9e73c5bcd Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 1 Apr 2024 20:42:27 +0300 Subject: Upgrade to 3.2.5 Note that this upstream version properly fixes the use-after-free error (CVE-2018-1311) triggered during the scanning of external DTDs (see https://issues.apache.org/jira/browse/XERCESC-2188 for details). --- .../net-accessor/handle-exception-as-error.patch | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 libxerces-c/tests/net-accessor/handle-exception-as-error.patch (limited to 'libxerces-c/tests/net-accessor/handle-exception-as-error.patch') diff --git a/libxerces-c/tests/net-accessor/handle-exception-as-error.patch b/libxerces-c/tests/net-accessor/handle-exception-as-error.patch deleted file mode 100644 index 674e5ba..0000000 --- a/libxerces-c/tests/net-accessor/handle-exception-as-error.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff --git a/libxerces-c/tests/net-accessor/NetAccessorTest.cpp b/libxerces-c/tests/net-accessor/NetAccessorTest.cpp -index 3bb735b..c2affbd 100644 ---- a/libxerces-c/tests/net-accessor/NetAccessorTest.cpp -+++ b/libxerces-c/tests/net-accessor/NetAccessorTest.cpp -@@ -122,6 +122,8 @@ main(int argc, char** argv) - // Get the URL - char* url = argv[1]; - -+ int r = 1; -+ - // Do the test - try - { -@@ -148,11 +150,11 @@ main(int argc, char** argv) - - // Delete the is - delete is; -- -+ r = 0; - } - catch(const XMLException& toCatch) - { -- XERCES_STD_QUALIFIER cout << "Exception during test:\n " -+ XERCES_STD_QUALIFIER cerr << "Exception during test:\n " - << toCatch.getMessage() - << XERCES_STD_QUALIFIER endl; - } -@@ -160,6 +162,6 @@ main(int argc, char** argv) - // And call the termination method - XMLPlatformUtils::Terminate(); - -- return 0; -+ return r; - } - -- cgit v1.1