* xmlFreePatParserContext: * @ctxt: an XSLT parser context * * Free up the memory allocated by @ctxt */
| 325 | * Free up the memory allocated by @ctxt |
| 326 | */ |
| 327 | static void |
| 328 | xmlFreePatParserContext(xmlPatParserContextPtr ctxt) { |
| 329 | if (ctxt == NULL) |
| 330 | return; |
| 331 | memset(ctxt, -1, sizeof(xmlPatParserContext)); |
| 332 | xmlFree(ctxt); |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * xmlPatternAdd: |
no outgoing calls
no test coverage detected