From 16f08cfeaf5534f2dcc4261a0257aba86469bda4 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sun, 30 Jul 2023 17:24:50 +0200 Subject: [PATCH] security/tpm/tpm{1,2}_log_serialized.h: Use C99 flexible arrays Use C99 flexible arrays instead of older style of one-element or zero-length arrays. It allows the compiler to generate errors when the flexible array does not occur at the end in the structure. Change-Id: I79e4b34fe682f5f21415cb93cf65394881173b34 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/76842 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- src/security/tpm/tpm1_log_serialized.h | 2 +- src/security/tpm/tpm2_log_serialized.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/security/tpm/tpm1_log_serialized.h b/src/security/tpm/tpm1_log_serialized.h index a8b7a60798..7c7d51a45a 100644 --- a/src/security/tpm/tpm1_log_serialized.h +++ b/src/security/tpm/tpm1_log_serialized.h @@ -41,7 +41,7 @@ struct tpm_1_log_table { struct spec_id_event_data spec_id; struct tpm_1_vendor vendor; - struct tpm_1_log_entry entries[0]; /* Variable number of entries */ + struct tpm_1_log_entry entries[]; /* Variable number of entries */ } __packed; #endif diff --git a/src/security/tpm/tpm2_log_serialized.h b/src/security/tpm/tpm2_log_serialized.h index 2b4e43c635..a11a2f6a7e 100644 --- a/src/security/tpm/tpm2_log_serialized.h +++ b/src/security/tpm/tpm2_log_serialized.h @@ -64,7 +64,7 @@ struct tpm_2_log_table { struct tpm_digest_sizes digest_sizes[1]; uint8_t vendor_info_size; struct tpm_2_vendor vendor; - struct tpm_2_log_entry entries[0]; /* Variable number of entries */ + struct tpm_2_log_entry entries[]; /* Variable number of entries */ } __packed; #endif