* * * Output error handlers * * * ************************************************************************/ * xmlSaveErrMemory: * @extra: extra information * * Handle an out of memory condition */
| 61 | * Handle an out of memory condition |
| 62 | */ |
| 63 | static void |
| 64 | xmlSaveErrMemory(xmlOutputBufferPtr out) |
| 65 | { |
| 66 | if (out != NULL) |
| 67 | out->error = XML_ERR_NO_MEMORY; |
| 68 | xmlRaiseMemoryError(NULL, NULL, NULL, XML_FROM_OUTPUT, NULL); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * xmlSaveErr: |
no test coverage detected