aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Tettamanti <[email protected]>2011-07-17 18:39:18 +0200
committerJean Delvare <[email protected]>2011-07-17 18:39:18 +0200
commit0b8e77f12cb6bfe2e5a67f2cdc8c7af23abc4ccf (patch)
tree5df41a3dfae9282cf723bd0752c6fd2c9fa6820f
parent1765a367a3b5d5e9692949b0c5ec933eff2c0701 (diff)
hwmon: (asus_atk0110) Fix memory leak
The object returned by atk_gitm is dynamically allocated and must be freed. Signed-off-by: Luca Tettamanti <[email protected]> Signed-off-by: Jean Delvare <[email protected]> Cc: [email protected]
-rw-r--r--drivers/hwmon/asus_atk0110.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c
index dcb78a7a8047..00e98517f94c 100644
--- a/drivers/hwmon/asus_atk0110.c
+++ b/drivers/hwmon/asus_atk0110.c
@@ -674,6 +674,7 @@ static int atk_debugfs_gitm_get(void *p, u64 *val)
else
err = -EIO;
+ ACPI_FREE(ret);
return err;
}