mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Report malloc failures from parsing patterns
This commit is contained in:
parent
255fd5f3f1
commit
bf1d8b9cfb
@ -3405,12 +3405,16 @@ xmllintMain(int argc, const char **argv, FILE *errStream,
|
|||||||
|
|
||||||
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_PATTERN_ENABLED)
|
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_PATTERN_ENABLED)
|
||||||
if ((lint->pattern != NULL) && (lint->walker == 0)) {
|
if ((lint->pattern != NULL) && (lint->walker == 0)) {
|
||||||
lint->patternc = xmlPatterncompile(BAD_CAST lint->pattern, NULL, 0,
|
res = xmlPatternCompileSafe(BAD_CAST lint->pattern, NULL, 0, NULL,
|
||||||
NULL);
|
&lint->patternc);
|
||||||
if (lint->patternc == NULL) {
|
if (lint->patternc == NULL) {
|
||||||
|
if (res < 0) {
|
||||||
|
lint->progresult = XMLLINT_ERR_MEM;
|
||||||
|
} else {
|
||||||
fprintf(errStream, "Pattern %s failed to compile\n",
|
fprintf(errStream, "Pattern %s failed to compile\n",
|
||||||
lint->pattern);
|
lint->pattern);
|
||||||
lint->progresult = XMLLINT_ERR_SCHEMAPAT;
|
lint->progresult = XMLLINT_ERR_SCHEMAPAT;
|
||||||
|
}
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user