* xmlDOMWrapFreeCtxt: * @ctxt: the DOM-wrapper context * * Frees the DOM-wrapper context. */
| 8019 | * Frees the DOM-wrapper context. |
| 8020 | */ |
| 8021 | void |
| 8022 | xmlDOMWrapFreeCtxt(xmlDOMWrapCtxtPtr ctxt) |
| 8023 | { |
| 8024 | if (ctxt == NULL) |
| 8025 | return; |
| 8026 | if (ctxt->namespaceMap != NULL) |
| 8027 | xmlDOMWrapNsMapFree((xmlNsMapPtr) ctxt->namespaceMap); |
| 8028 | /* |
| 8029 | * TODO: Store the namespace map in the context. |
| 8030 | */ |
| 8031 | xmlFree(ctxt); |
| 8032 | } |
| 8033 | |
| 8034 | /* |
| 8035 | * xmlTreeLookupNsListByPrefix: |
nothing calls this directly
no test coverage detected