* xmlBufMemoryError: * @extra: extra information * * Handle an out of memory condition * To be improved... */
| 89 | * To be improved... |
| 90 | */ |
| 91 | static void |
| 92 | xmlBufMemoryError(xmlBufPtr buf) |
| 93 | { |
| 94 | if (buf->error == 0) |
| 95 | buf->error = XML_ERR_NO_MEMORY; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * xmlBufOverflowError: |
no outgoing calls
no test coverage detected