mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint --memory should fail on empty files
Exposed by https://bugzilla.gnome.org/show_bug.cgi?id=699896 when doing analysis but a priori unrelated.
This commit is contained in:
parent
0b86537dfa
commit
a75a009d12
@ -2338,8 +2338,11 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) {
|
||||
if ((fd = open(filename, O_RDONLY)) < 0)
|
||||
return;
|
||||
base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
|
||||
if (base == (void *) MAP_FAILED)
|
||||
if (base == (void *) MAP_FAILED) {
|
||||
fprintf(stderr, "mmap failure for file %s\n", filename);
|
||||
progresult = XMLLINT_ERR_RDFILE;
|
||||
return;
|
||||
}
|
||||
|
||||
if (rectxt == NULL)
|
||||
doc = xmlReadMemory((char *) base, info.st_size,
|
||||
|
Loading…
x
Reference in New Issue
Block a user