The following changes since commit 548f1269e3772c666cac4148453d9c63bdfa65c4: Merge branch 'issue-1213' of https://github.com/SystemFabricWorks/fio (2022-10-19 12:04:50 -0400) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to d72244761b2230fbb2d6eaec59cdedd3ea651d4f: stat: fix segfault with fio option --bandwidth-log (2022-10-21 13:23:41 -0400) ---------------------------------------------------------------- Ankit Kumar (1): stat: fix segfault with fio option --bandwidth-log stat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/stat.c b/stat.c index 949af5ed..b963973a 100644 --- a/stat.c +++ b/stat.c @@ -2870,7 +2870,10 @@ static struct io_logs *get_new_log(struct io_log *iolog) * forever */ if (!iolog->cur_log_max) { - new_samples = iolog->td->o.log_entries; + if (iolog->td) + new_samples = iolog->td->o.log_entries; + else + new_samples = DEF_LOG_ENTRIES; } else { new_samples = iolog->cur_log_max * 2; if (new_samples > MAX_LOG_ENTRIES)