|
diff --git a/shared.c b/shared.c index d7b2d5a..a27ab30 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -393,25 +393,30 @@ int cgit_close_filter(struct cgit_filter *filter) |
393 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) |
393 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) |
394 | return 0; |
394 | return 0; |
395 | die("Subprocess %s exited abnormally", filter->cmd); |
395 | die("Subprocess %s exited abnormally", filter->cmd); |
396 | } |
396 | } |
397 | |
397 | |
398 | /* Read the content of the specified file into a newly allocated buffer, |
398 | /* Read the content of the specified file into a newly allocated buffer, |
399 | * zeroterminate the buffer and return 0 on success, errno otherwise. |
399 | * zeroterminate the buffer and return 0 on success, errno otherwise. |
400 | */ |
400 | */ |
401 | int readfile(const char *path, char **buf, size_t *size) |
401 | int readfile(const char *path, char **buf, size_t *size) |
402 | { |
402 | { |
403 | int fd; |
403 | int fd; |
404 | struct stat st; |
404 | struct stat st; |
405 | |
405 | |
406 | fd = open(path, O_RDONLY); |
406 | fd = open(path, O_RDONLY); |
407 | if (fd == -1) |
407 | if (fd == -1) |
408 | return errno; |
408 | return errno; |
409 | if (fstat(fd, &st)) |
409 | if (fstat(fd, &st)) { |
| |
410 | close(fd); |
410 | return errno; |
411 | return errno; |
411 | if (!S_ISREG(st.st_mode)) |
412 | } |
| |
413 | if (!S_ISREG(st.st_mode)) { |
| |
414 | close(fd); |
412 | return EISDIR; |
415 | return EISDIR; |
| |
416 | } |
413 | *buf = xmalloc(st.st_size + 1); |
417 | *buf = xmalloc(st.st_size + 1); |
414 | *size = read_in_full(fd, *buf, st.st_size); |
418 | *size = read_in_full(fd, *buf, st.st_size); |
415 | (*buf)[*size] = '\0'; |
419 | (*buf)[*size] = '\0'; |
| |
420 | close(fd); |
416 | return (*size == st.st_size ? 0 : errno); |
421 | return (*size == st.st_size ? 0 : errno); |
417 | } |
422 | } |
|