* xmlXIncludeErrMemory: * @extra: extra information * * Handle an out of memory condition */
| 130 | * Handle an out of memory condition |
| 131 | */ |
| 132 | static void |
| 133 | xmlXIncludeErrMemory(xmlXIncludeCtxtPtr ctxt) |
| 134 | { |
| 135 | ctxt->errNo = XML_ERR_NO_MEMORY; |
| 136 | ctxt->fatalErr = 1; |
| 137 | ctxt->nbErrors++; |
| 138 | |
| 139 | xmlRaiseMemoryError(ctxt->errorHandler, NULL, ctxt->errorCtxt, |
| 140 | XML_FROM_XINCLUDE, NULL); |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * xmlXIncludeErr: |
no test coverage detected