diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-01-25 17:57:53 +0100 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-01-25 17:57:53 +0100 |
| commit | 0d511aaa1f2bf147240605d288c348ef88407af2 (patch) | |
| tree | d5a0ebfd0723b2a7e562a8c6715cc2d0fc93d91c | |
| parent | 97098feb7b8840fc851e6bab925c139bce978231 (diff) | |
Do not forget to read the modification time
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1092,7 +1092,7 @@ static int ftag_sync_compare_mtimes(void) } size_t line_size = 32; char *line = malloc(line_size); - ssize_t line_len; + getline(&line, &line_size, pipe); if (ferror(pipe)) { perror("getline"); exit(EXIT_FAILURE); |
