Merge tag 'keys-trusted-next-6.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd

Pull keys fix from Jarkko Sakkinen.

* tag 'keys-trusted-next-6.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd:
keys/trusted_keys: fix handle passed to tpm_buf_append_name during unseal

+2 -2
+2 -2
security/keys/trusted-keys/trusted_tpm2.c
··· 465 } 466 467 /** 468 - * tpm2_unseal_cmd() - execute a TPM2_Unload command 469 * 470 * @chip: TPM chip to use 471 * @payload: the key data in clear and encrypted form ··· 498 return rc; 499 } 500 501 - rc = tpm_buf_append_name(chip, &buf, options->keyhandle, NULL); 502 if (rc) 503 goto out; 504
··· 465 } 466 467 /** 468 + * tpm2_unseal_cmd() - execute a TPM2_Unseal command 469 * 470 * @chip: TPM chip to use 471 * @payload: the key data in clear and encrypted form ··· 498 return rc; 499 } 500 501 + rc = tpm_buf_append_name(chip, &buf, blob_handle, NULL); 502 if (rc) 503 goto out; 504