diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-30 17:24:50 +0200 |
---|---|---|
committer | Jakub Czapiga <jacz@semihalf.com> | 2023-08-01 12:41:14 +0000 |
commit | 16f08cfeaf5534f2dcc4261a0257aba86469bda4 (patch) | |
tree | 12fa36e5ab4fa236de2c62315243ecfffbd69cb2 /src/security | |
parent | b66a5551d587aced837737fff2b0584b74613955 (diff) | |
download | coreboot-16f08cfeaf5534f2dcc4261a0257aba86469bda4.tar.gz coreboot-16f08cfeaf5534f2dcc4261a0257aba86469bda4.tar.bz2 coreboot-16f08cfeaf5534f2dcc4261a0257aba86469bda4.zip |
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 <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76842
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/tpm/tpm1_log_serialized.h | 2 | ||||
-rw-r--r-- | 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 a8b7a60798a1..7c7d51a45a97 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 2b4e43c63548..a11a2f6a7e50 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 |