Close fd on error in readfile()

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Rys Sommefeldt 2009-11-07 15:24:45 +01:00 committed by Lars Hjemli
parent e34a3b5adc
commit 8cfe4897f0
1 changed files with 7 additions and 2 deletions

View File

@ -406,12 +406,17 @@ int readfile(const char *path, char **buf, size_t *size)
fd = open(path, O_RDONLY);
if (fd == -1)
return errno;
if (fstat(fd, &st))
if (fstat(fd, &st)) {
close(fd);
return errno;
if (!S_ISREG(st.st_mode))
}
if (!S_ISREG(st.st_mode)) {
close(fd);
return EISDIR;
}
*buf = xmalloc(st.st_size + 1);
*size = read_in_full(fd, *buf, st.st_size);
(*buf)[*size] = '\0';
close(fd);
return (*size == st.st_size ? 0 : errno);
}