[PATCH] Fix missing-field-initializers error

huangy81 at chinatelecom.cn huangy81 at chinatelecom.cn
Wed Jan 12 16:11:47 UTC 2022


From: Hyman Huang(黄勇) <huangy81 at chinatelecom.cn>

When compile libvirt via ninja tool with default configuration,
it report the error message as the following:
"missing initializer for field 'path' of 'virTPMBinaryInfo'".
So initialize the 'path' field in 'virTPMBinaryInfo' with 'NULL'.

Signed-off-by: Hyman Huang(黄勇) <huangy81 at chinatelecom.cn>
---
 src/util/virtpm.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/util/virtpm.c b/src/util/virtpm.c
index cf4c7c4..a02d933 100644
--- a/src/util/virtpm.c
+++ b/src/util/virtpm.c
@@ -122,13 +122,16 @@ typedef struct _virTPMBinaryInfo {
 
 static virTPMBinaryInfo swtpmBinaries[VIR_TPM_BINARY_LAST] = {
     [VIR_TPM_BINARY_SWTPM] = {
+        .path = NULL,
         .parm = "socket",
         .capsParse = virTPMSwtpmFeatureTypeFromString,
     },
     [VIR_TPM_BINARY_SWTPM_SETUP] = {
+        .path = NULL,
         .capsParse = virTPMSwtpmSetupFeatureTypeFromString,
     },
     [VIR_TPM_BINARY_SWTPM_IOCTL] = {
+        .path = NULL,
     },
 };
 
-- 
1.8.3.1





More information about the libvir-list mailing list