* xmlSchematronVTypeErrMemory: * @node: a context node * @extra: extra information * * Handle an out of memory condition */
| 287 | * Handle an out of memory condition |
| 288 | */ |
| 289 | static void |
| 290 | xmlSchematronVErrMemory(xmlSchematronValidCtxtPtr ctxt) |
| 291 | { |
| 292 | if (ctxt != NULL) { |
| 293 | ctxt->nberrors++; |
| 294 | ctxt->err = XML_SCHEMAV_INTERNAL; |
| 295 | } |
| 296 | xmlRaiseMemoryError(NULL, NULL, NULL, XML_FROM_SCHEMASV, NULL); |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * xmlSchematronVErr: |
no test coverage detected