summaryrefslogtreecommitdiff
path: root/hw/tpm
diff options
context:
space:
mode:
authorStefan Berger <stefanb@linux.vnet.ibm.com>2018-01-26 13:49:24 -0500
committerStefan Berger <stefanb@linux.vnet.ibm.com>2018-01-29 12:24:51 -0500
commit302705876492a39f568035ce346e2c9176f5665e (patch)
tree475769e9910fef9b1d347a224eaed4c42ca929a7 /hw/tpm
parent0d1442912b3d6591a57ee45fbf28bc91e58d9e76 (diff)
downloadqemu-302705876492a39f568035ce346e2c9176f5665e.tar.gz
tpm: Set the flags of the CMD_INIT command to 0
The flags of the CMD_INIT control channel command were not initialized properly. Fix this and set to 0. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'hw/tpm')
-rw-r--r--hw/tpm/tpm_emulator.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/tpm/tpm_emulator.c b/hw/tpm/tpm_emulator.c
index 35c78de5a9..532d3e3c52 100644
--- a/hw/tpm/tpm_emulator.c
+++ b/hw/tpm/tpm_emulator.c
@@ -320,7 +320,9 @@ static int tpm_emulator_set_buffer_size(TPMBackend *tb,
static int tpm_emulator_startup_tpm(TPMBackend *tb, size_t buffersize)
{
TPMEmulator *tpm_emu = TPM_EMULATOR(tb);
- ptm_init init;
+ ptm_init init = {
+ .u.req.init_flags = 0,
+ };
ptm_res res;
if (buffersize != 0 &&