public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] drivers/thermal/thermal.c: fix a check-after-use
@ 2008-02-20  0:14 Adrian Bunk
  2008-02-20  0:25 ` Harvey Harrison
  2008-02-23  7:19 ` Len Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Adrian Bunk @ 2008-02-20  0:14 UTC (permalink / raw)
  To: Zhang Rui, Thomas Sujith, Len Brown; +Cc: linux-acpi, linux-kernel

This patch fixes a check-after-use spotted by the Coverity checker.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
570462ca4441d8d63dfd46efe6e5b2b1c251a611 diff --git a/drivers/thermal/thermal.c b/drivers/thermal/thermal.c
index e782b3e..958654b 100644
--- a/drivers/thermal/thermal.c
+++ b/drivers/thermal/thermal.c
@@ -308,10 +308,10 @@ int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
 	struct thermal_cooling_device_instance *pos;
 	int result;
 
-	if (trip >= tz->trips || (trip < 0 && trip != THERMAL_TRIPS_NONE))
+	if (!tz || !cdev)
 		return -EINVAL;
 
-	if (!tz || !cdev)
+	if (trip >= tz->trips || (trip < 0 && trip != THERMAL_TRIPS_NONE))
 		return -EINVAL;
 
 	dev =


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

end of thread, other threads:[~2008-02-23  7:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-20  0:14 [2.6 patch] drivers/thermal/thermal.c: fix a check-after-use Adrian Bunk
2008-02-20  0:25 ` Harvey Harrison
2008-02-20  0:26   ` Adrian Bunk
2008-02-23  7:19 ` Len Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox