* xmlXPathRegisteredVariablesCleanup: * @ctxt: the XPath context * * Cleanup the XPath context data associated to registered variables */
| 4185 | * Cleanup the XPath context data associated to registered variables |
| 4186 | */ |
| 4187 | void |
| 4188 | xmlXPathRegisteredVariablesCleanup(xmlXPathContextPtr ctxt) { |
| 4189 | if (ctxt == NULL) |
| 4190 | return; |
| 4191 | |
| 4192 | xmlHashFree(ctxt->varHash, xmlXPathFreeObjectEntry); |
| 4193 | ctxt->varHash = NULL; |
| 4194 | } |
| 4195 | |
| 4196 | /** |
| 4197 | * xmlXPathRegisterNs: |
no test coverage detected