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

Function xmlCatalogFreeLocal

ThirdParty/libxml2/vtklibxml2/catalog.c:3536–3546  ·  view source on GitHub ↗

* xmlCatalogFreeLocal: * @catalogs: a document's list of catalogs * * Free up the memory associated to the catalog list */

Source from the content-addressed store, hash-verified

3534 * Free up the memory associated to the catalog list
3535 */
3536void
3537xmlCatalogFreeLocal(void *catalogs) {
3538 xmlCatalogEntryPtr catal;
3539
3540 if (!xmlCatalogInitialized)
3541 xmlInitializeCatalog();
3542
3543 catal = (xmlCatalogEntryPtr) catalogs;
3544 if (catal != NULL)
3545 xmlFreeCatalogEntryList(catal);
3546}
3547
3548
3549/**

Callers 2

xmlFreeParserCtxtFunction · 0.85
xmlCtxtResetFunction · 0.85

Calls 2

xmlInitializeCatalogFunction · 0.85
xmlFreeCatalogEntryListFunction · 0.85

Tested by

no test coverage detected