mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Avoid a descriptor leak in catalog loading code
File descriptors could be leaked in xmlLoadFileContent()
This commit is contained in:
parent
2ddecc2386
commit
c43ac66988
@ -997,18 +997,15 @@ xmlLoadFileContent(const char *filename)
|
||||
}
|
||||
#ifdef HAVE_STAT
|
||||
len = read(fd, content, size);
|
||||
close(fd);
|
||||
#else
|
||||
len = fread(content, 1, size, fd);
|
||||
fclose(fd);
|
||||
#endif
|
||||
if (len < 0) {
|
||||
xmlFree(content);
|
||||
return (NULL);
|
||||
}
|
||||
#ifdef HAVE_STAT
|
||||
close(fd);
|
||||
#else
|
||||
fclose(fd);
|
||||
#endif
|
||||
content[len] = 0;
|
||||
|
||||
return(content);
|
||||
|
Loading…
x
Reference in New Issue
Block a user