From bac9fce4e0619d39bb7535610b60e7f4104ed026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Wed, 10 Jul 2024 00:29:37 +0200 Subject: [PATCH] Fix argument order in g_malloc0_n() usages --- fiv-io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fiv-io.c b/fiv-io.c index 24db289..2d32990 100644 --- a/fiv-io.c +++ b/fiv-io.c @@ -976,7 +976,7 @@ static uint32_t * parse_mpf_index_entries(const struct tiffer *T, struct tiffer_entry *entry) { uint32_t count = entry->remaining_count / 16; - uint32_t *offsets = g_malloc0_n(sizeof *offsets, count + 1), *out = offsets; + uint32_t *offsets = g_malloc0_n(count + 1, sizeof *offsets), *out = offsets; for (uint32_t i = 0; i < count; i++) { // 5.2.3.3.3. Individual Image Data Offset uint32_t offset = parse_mpf_mpentry(entry->p + i * 16, T);