From 604a536247797016f2c77ea8e9c8cd76512b739c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 22 Mar 2024 17:19:18 -0400 Subject: Dynamically allocate Delivery.system.platform array. * This avoids compiler warnings about passing the address to a stack-allocated chunk of member in tpl_register. --- src/deliverable.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/deliverable.c b/src/deliverable.c index 6b70912..28c8abc 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -268,6 +268,11 @@ int delivery_init_platform(struct Delivery *ctx) { return -1; } + ctx->system.platform = calloc(DELIVERY_PLATFORM_MAX, sizeof(*ctx->system.platform)); + for (size_t i = 0; i < DELIVERY_PLATFORM_MAX; i++) { + ctx->system.platform[i] = calloc(DELIVERY_PLATFORM_MAXLEN, sizeof(*ctx->system.platform[0])); + } + ctx->system.arch = strdup(uts.machine); if (!ctx->system.arch) { // memory error -- cgit