From 09a5a5b6c02c45b96381a2e23a9b7c13ca372a01 Mon Sep 17 00:00:00 2001 From: "Dan S. Camper" Date: Fri, 18 Oct 2024 13:53:26 -0500 Subject: [PATCH] HPCC-32837 Remove deprecated functions calls from XSLT code xmlInitMemory() deprecated and functionality folded into xmlInitParser(). xmlCleanupMemory() deprecated and functionality folded into xmlCleanupParser(). --- system/xmllib/libxslt_processor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/system/xmllib/libxslt_processor.cpp b/system/xmllib/libxslt_processor.cpp index c06e3f5450e..46fab63f5bc 100644 --- a/system/xmllib/libxslt_processor.cpp +++ b/system/xmllib/libxslt_processor.cpp @@ -729,7 +729,6 @@ CLibXslProcessor::CLibXslProcessor() { m_cachetimeout = XSLT_DEFAULT_CACHETIMEOUT; - xmlInitMemory(); xmlInitParser(); xmlSubstituteEntitiesDefault(1); @@ -747,7 +746,6 @@ CLibXslProcessor::~CLibXslProcessor() { xsltCleanupGlobals(); xmlCleanupParser(); - xmlCleanupMemory(); } static CLibXslProcessor xslProcessor;