* xmlCatalogFreeLocal: * @catalogs: a document's list of catalogs * * Free up the memory associated to the catalog list */
| 3534 | * Free up the memory associated to the catalog list |
| 3535 | */ |
| 3536 | void |
| 3537 | xmlCatalogFreeLocal(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 | /** |
no test coverage detected