* xmlXPathPErrMemory: * @ctxt: an XPath parser context * * Handle a memory allocation failure. */
| 643 | * Handle a memory allocation failure. |
| 644 | */ |
| 645 | void |
| 646 | xmlXPathPErrMemory(xmlXPathParserContextPtr ctxt) |
| 647 | { |
| 648 | if (ctxt == NULL) |
| 649 | return; |
| 650 | ctxt->error = XPATH_MEMORY_ERROR; |
| 651 | xmlXPathErrMemory(ctxt->context); |
| 652 | } |
| 653 | |
| 654 | /** |
| 655 | * xmlXPathErr: |
no test coverage detected