aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Hattori <[email protected]>2024-06-27 15:31:09 +0900
committerJarkko Sakkinen <[email protected]>2024-07-01 15:50:02 +0000
commit5d8e2971e817bb64225fc0b6327a78752f58a9aa (patch)
tree59f0a52072676623e10ca9cef9b4a43607361877
parent22a40d14b572deb80c0648557f4bd502d7e83826 (diff)
char: tpm: Fix possible memory leak in tpm_bios_measurements_open()
In tpm_bios_measurements_open(), get_device() is called on the device embedded in struct tpm_chip. In the error path, however, put_device() is not called. This results in a reference count leak, which prevents the device from being properly released. This commit makes sure to call put_device() when the seq_open() call fails. Cc: [email protected] # +v4.18 Fixes: 9b01b5356629 ("tpm: Move shared eventlog functions to common.c") Signed-off-by: Joe Hattori <[email protected]> Signed-off-by: Jarkko Sakkinen <[email protected]>
-rw-r--r--drivers/char/tpm/eventlog/common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/tpm/eventlog/common.c b/drivers/char/tpm/eventlog/common.c
index 639c3f395a5a..4c0bbba64ee5 100644
--- a/drivers/char/tpm/eventlog/common.c
+++ b/drivers/char/tpm/eventlog/common.c
@@ -47,6 +47,8 @@ static int tpm_bios_measurements_open(struct inode *inode,
if (!err) {
seq = file->private_data;
seq->private = chip;
+ } else {
+ put_device(&chip->dev);
}
return err;