Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Jun 2016 19:08:14 +0000 (UTC)
From:      "Conrad E. Meyer" <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301562 - head/sys/dev/acpica
Message-ID:  <201606071908.u57J8EZI011734@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cem
Date: Tue Jun  7 19:08:13 2016
New Revision: 301562
URL: https://svnweb.freebsd.org/changeset/base/301562

Log:
  Fix a minor leak in ACPI thermal
  
  Introduced in r301518.
  
  Reported by:	Coverity
  CID:		1356266
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/dev/acpica/acpi_thermal.c

Modified: head/sys/dev/acpica/acpi_thermal.c
==============================================================================
--- head/sys/dev/acpica/acpi_thermal.c	Tue Jun  7 18:50:36 2016	(r301561)
+++ head/sys/dev/acpica/acpi_thermal.c	Tue Jun  7 19:08:13 2016	(r301562)
@@ -335,8 +335,10 @@ acpi_tz_startup(void *arg __unused)
     int devcount, error, i;
 
     devclass_get_devices(acpi_tz_devclass, &devs, &devcount);
-    if (devcount == 0)
+    if (devcount == 0) {
+	free(devs, M_TEMP);
 	return;
+    }
 
     /*
      * Create thread to service all of the thermal zones.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606071908.u57J8EZI011734>