mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fuzz: Silence more OOM errors
This commit is contained in:
parent
9f652e57c1
commit
3b38f19b40
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user