trusted-keys: match tpm_get_ops on all return paths

The `tpm_get_ops` call at the beginning of the function is not paired
with a `tpm_put_ops` on this return path.

Cc: stable@vger.kernel.org
Fixes: f221974525 ("security: keys: trusted: use ASN.1 TPM2 key format for the blobs")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
This commit is contained in:
Ben Boeckel 2021-04-29 15:21:56 -04:00 коммит произвёл Jarkko Sakkinen
Родитель 83a775d5f9
Коммит b3ad7855b7
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -336,9 +336,9 @@ out:
rc = -EPERM; rc = -EPERM;
} }
if (blob_len < 0) if (blob_len < 0)
return blob_len; rc = blob_len;
else
payload->blob_len = blob_len; payload->blob_len = blob_len;
tpm_put_ops(chip); tpm_put_ops(chip);
return rc; return rc;