From ff39f28bd708e7b9a22aa963fcfef1e839116195 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 16 Jul 2024 00:21:22 +0200 Subject: [PATCH] schematron: Use xmlMalloc --- schematron.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schematron.c b/schematron.c index 64ecbc4a..21e9956b 100644 --- a/schematron.c +++ b/schematron.c @@ -1048,7 +1048,7 @@ xmlSchematronParseRule(xmlSchematronParserCtxtPtr ctxt, return; } - let = (xmlSchematronLetPtr) malloc(sizeof(xmlSchematronLet)); + let = (xmlSchematronLetPtr) xmlMalloc(sizeof(xmlSchematronLet)); let->name = name; let->comp = var_comp; let->next = NULL;