From: Jens Axboe Date: Tue, 27 Oct 2015 07:47:35 +0000 (+0900) Subject: jobs_eta alloc padding X-Git-Tag: fio-2.2.11~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=e98e0eb5bff525804ed4c6412c77202932504564;p=fio.git jobs_eta alloc padding Signed-off-by: Jens Axboe --- diff --git a/eta.c b/eta.c index ba066546..7eb1c27f 100644 --- a/eta.c +++ b/eta.c @@ -590,7 +590,7 @@ struct jobs_eta *get_jobs_eta(int force, size_t *size) if (!thread_number) return NULL; - *size = sizeof(*je) + THREAD_RUNSTR_SZ + 1; + *size = sizeof(*je) + THREAD_RUNSTR_SZ + 8; je = malloc(*size); if (!je) return NULL;