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>
This commit is contained in:
parent
0d1442912b
commit
3027058764
@ -320,7 +320,9 @@ static int tpm_emulator_set_buffer_size(TPMBackend *tb,
|
|||||||
static int tpm_emulator_startup_tpm(TPMBackend *tb, size_t buffersize)
|
static int tpm_emulator_startup_tpm(TPMBackend *tb, size_t buffersize)
|
||||||
{
|
{
|
||||||
TPMEmulator *tpm_emu = TPM_EMULATOR(tb);
|
TPMEmulator *tpm_emu = TPM_EMULATOR(tb);
|
||||||
ptm_init init;
|
ptm_init init = {
|
||||||
|
.u.req.init_flags = 0,
|
||||||
|
};
|
||||||
ptm_res res;
|
ptm_res res;
|
||||||
|
|
||||||
if (buffersize != 0 &&
|
if (buffersize != 0 &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user