The following changes since commit 16b1e24562347d371d6d62e0bb9a03ad4e2a8a96: t/dedupe: handle errors more gracefully (2022-03-11 05:09:20 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 1fe261a24794f60bf374cd1852e09ec56997a20a: t/dedupe: ensure that 'ret' is initialized (2022-03-11 06:15:53 -0700) ---------------------------------------------------------------- Jens Axboe (1): t/dedupe: ensure that 'ret' is initialized t/dedupe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/t/dedupe.c b/t/dedupe.c index 561aa08d..d21e96f4 100644 --- a/t/dedupe.c +++ b/t/dedupe.c @@ -280,7 +280,7 @@ static int insert_chunks(struct item *items, unsigned int nitems, uint64_t *ndupes, uint64_t *unique_capacity, struct zlib_ctrl *zc) { - int i, ret; + int i, ret = 0; fio_sem_down(rb_lock);