diff options
| author | Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | 2014-12-23 18:23:34 -0500 |
|---|---|---|
| committer | Zhang Rui <rui.zhang@intel.com> | 2014-12-23 21:37:43 -0500 |
| commit | f01bc8f37ec940caae8bf8b6e7169f7cc2b6877a (patch) | |
| tree | 09348a85e28f3fd49b719baaffc9e95d5bd50de8 | |
| parent | 47c93e6b3f37bf2b709fb107f3db586e39b8fd56 (diff) | |
Thermal/int340x/int3403: Fix memory leak
Address memory leak for buffer allocated with ACPI_ALLOCATE_BUFFER.
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
| -rw-r--r-- | drivers/thermal/int340x_thermal/int3403_thermal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/thermal/int340x_thermal/int3403_thermal.c b/drivers/thermal/int340x_thermal/int3403_thermal.c index 1bfa6a69e77a..479d754c3f57 100644 --- a/drivers/thermal/int340x_thermal/int3403_thermal.c +++ b/drivers/thermal/int340x_thermal/int3403_thermal.c | |||
| @@ -369,6 +369,7 @@ static int int3403_cdev_add(struct int3403_priv *priv) | |||
| 369 | p = buf.pointer; | 369 | p = buf.pointer; |
| 370 | if (!p || (p->type != ACPI_TYPE_PACKAGE)) { | 370 | if (!p || (p->type != ACPI_TYPE_PACKAGE)) { |
| 371 | printk(KERN_WARNING "Invalid PPSS data\n"); | 371 | printk(KERN_WARNING "Invalid PPSS data\n"); |
| 372 | kfree(buf.pointer); | ||
| 372 | return -EFAULT; | 373 | return -EFAULT; |
| 373 | } | 374 | } |
| 374 | 375 | ||
| @@ -381,6 +382,7 @@ static int int3403_cdev_add(struct int3403_priv *priv) | |||
| 381 | 382 | ||
| 382 | priv->priv = obj; | 383 | priv->priv = obj; |
| 383 | 384 | ||
| 385 | kfree(buf.pointer); | ||
| 384 | /* TODO: add ACPI notification support */ | 386 | /* TODO: add ACPI notification support */ |
| 385 | 387 | ||
| 386 | return result; | 388 | return result; |
