fuzz: Silence more OOM errors

This commit is contained in:
Nick Wellnhofer 2024-11-25 22:37:51 +01:00
parent 9f652e57c1
commit 3b38f19b40

View File

@ -93,7 +93,13 @@ LLVMFuzzerTestOneInput(const char *data, size_t size) {
size_t consumed, chunkSize;
xmlFuzzInjectFailure(failurePos);
/*
* FIXME: xmlCreatePushParserCtxt can still report OOM errors
* to stderr.
*/
xmlSetGenericErrorFunc(NULL, xmlFuzzErrorFunc);
ctxt = xmlCreatePushParserCtxt(NULL, NULL, NULL, 0, docUrl);
xmlSetGenericErrorFunc(NULL, NULL);
if (ctxt != NULL) {
xmlCtxtSetErrorHandler(ctxt, xmlFuzzSErrorFunc, NULL);
xmlCtxtSetResourceLoader(ctxt, xmlFuzzResourceLoader, NULL);