MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlParserNsFree

Function xmlParserNsFree

ThirdParty/libxml2/vtklibxml2/parser.c:1470–1478  ·  view source on GitHub ↗

* xmlParserNsFree: * @nsdb: namespace database * * Free a namespace database. */

Source from the content-addressed store, hash-verified

1468 * Free a namespace database.
1469 */
1470void
1471xmlParserNsFree(xmlParserNsData *nsdb) {
1472 if (nsdb == NULL)
1473 return;
1474
1475 xmlFree(nsdb->extra);
1476 xmlFree(nsdb->hash);
1477 xmlFree(nsdb);
1478}
1479
1480/**
1481 * xmlParserNsReset:

Callers 1

xmlFreeParserCtxtFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected