linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Thermal:Fix memory leak if occur goto unregister
@ 2014-10-20  8:27 Yao Dongdong
  2014-10-20 12:33 ` Eduardo Valentin
  0 siblings, 1 reply; 5+ messages in thread
From: Yao Dongdong @ 2014-10-20  8:27 UTC (permalink / raw)
  To: Zhang Rui, Eduardo Valentin; +Cc: linux-pm, LKML, yaodongdong

Signed-off-by:yaodongdong@huawei.com

---
 drivers/thermal/thermal_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c
index 71b0ec0..5b7d466 100644
--- a/drivers/thermal/thermal_core.c
+++ b/drivers/thermal/thermal_core.c
@@ -1574,6 +1574,7 @@ struct thermal_zone_device *thermal_zone_device_register(const char *type,
 unregister:
    release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
    device_unregister(&tz->device);
+   kfree(tz);
    return ERR_PTR(result);
 }
 EXPORT_SYMBOL_GPL(thermal_zone_device_register);
--
1.8.0.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-11-04  2:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-20  8:27 [PATCH 1/2] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
2014-10-20 12:33 ` Eduardo Valentin
2014-11-03 18:17   ` R, Durgadoss
2014-11-03 18:35     ` Eduardo Valentin
2014-11-04  2:01       ` Yao Dongdong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).