Avoid a descriptor leak in catalog loading code

File descriptors could be leaked in xmlLoadFileContent()
This commit is contained in:
Carlo Bramini 2010-10-14 14:27:54 +02:00 committed by Daniel Veillard
parent 2ddecc2386
commit c43ac66988

View File

@ -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);