* xmlXPathRegisteredFuncsCleanup: * @ctxt: the XPath context * * Cleanup the XPath context data associated to registered functions */
| 4040 | * Cleanup the XPath context data associated to registered functions |
| 4041 | */ |
| 4042 | void |
| 4043 | xmlXPathRegisteredFuncsCleanup(xmlXPathContextPtr ctxt) { |
| 4044 | if (ctxt == NULL) |
| 4045 | return; |
| 4046 | |
| 4047 | xmlHashFree(ctxt->funcHash, NULL); |
| 4048 | ctxt->funcHash = NULL; |
| 4049 | } |
| 4050 | |
| 4051 | /************************************************************************ |
| 4052 | * * |
no test coverage detected