parser: Fix xmlLoadResource

Short-lived regression.
This commit is contained in:
Nick Wellnhofer 2024-07-02 19:46:51 +02:00
parent ede5d99af3
commit 197e09d5c5

View File

@ -2609,12 +2609,12 @@ xmlLoadResource(xmlParserCtxtPtr ctxt, const char *url, const char *publicId,
code = ctxt->resourceLoader(ctxt->resourceCtxt, url, publicId, type,
flags, &ret);
if (resource != NULL)
xmlFree(resource);
if (code != XML_ERR_OK) {
xmlCtxtErrIO(ctxt, code, url);
return(NULL);
ret = NULL;
}
if (resource != NULL)
xmlFree(resource);
return(ret);
}