The following changes since commit 20d0ba84d3b7e7abd8a3318175b46f5e5363547d: t/jobs/t0034: add test for the log_issue_time option (2024-09-04 13:59:45 -0400) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 65098b11f8aa28e328c225dcd39e3338bb005fdc: iolog: add va_end on error (2024-09-05 14:35:30 -0400) ---------------------------------------------------------------- Vincent Fu (1): iolog: add va_end on error iolog.c | 1 + 1 file changed, 1 insertion(+) --- Diff of recent changes: diff --git a/iolog.c b/iolog.c index aadb0d05..ef173b09 100644 --- a/iolog.c +++ b/iolog.c @@ -1022,6 +1022,7 @@ static int print_sample_fields(char **p, size_t *left, const char *fmt, ...) { ret = vsnprintf(*p, *left, fmt, ap); if (ret < 0 || ret >= *left) { log_err("sample file write failed: %d\n", ret); + va_end(ap); return -1; } va_end(ap);