mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Fix xmlLoadResource
Short-lived regression.
This commit is contained in:
parent
ede5d99af3
commit
197e09d5c5
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user