Fix memory leak in xmlRelaxNGParseData

Found by Coverity.

https://bugzilla.redhat.com/show_bug.cgi?id=1938806
This commit is contained in:
David King 2021-07-14 15:31:55 +01:00 committed by Nick Wellnhofer
parent 9a9dd31ba6
commit 483de2c21d

View File

@ -3654,6 +3654,7 @@ xmlRelaxNGParseData(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
def = xmlRelaxNGNewDefine(ctxt, node);
if (def == NULL) {
xmlFree(library);
xmlFree(type);
return (NULL);
}