catalog: Fix memory leaks

Fixes #377.
This commit is contained in:
Nick Wellnhofer 2023-02-21 15:22:01 +01:00
parent 7bd77873db
commit c9e4c6d416
2 changed files with 5 additions and 0 deletions

View File

@ -2969,6 +2969,8 @@ xmlACatalogAdd(xmlCatalogPtr catal, const xmlChar * type,
if (catal->sgml == NULL)
catal->sgml = xmlHashCreate(10);
res = xmlHashAddEntry(catal->sgml, orig, entry);
if (res < 0)
xmlFreeCatalogEntry(entry, NULL);
}
}
return (res);

View File

@ -509,6 +509,9 @@ int main(int argc, char **argv) {
xmlACatalogDump(catal, stdout);
}
i += 2;
xmlFreeCatalog(catal);
xmlFreeCatalog(super);
} else {
if ((!strcmp(argv[i], "-add")) ||
(!strcmp(argv[i], "--add"))) {