Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Jan 2018 19:24:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327527 - head/sys/dev/ath
Message-ID:  <201801031924.w03JOL2w029220@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Jan  3 19:24:21 2018
New Revision: 327527
URL: https://svnweb.freebsd.org/changeset/base/327527

Log:
  ath: revert accidental change committed with r327526
  
  It will be recommitted with the correct commit message.

Modified:
  head/sys/dev/ath/if_ath_ioctl.c

Modified: head/sys/dev/ath/if_ath_ioctl.c
==============================================================================
--- head/sys/dev/ath/if_ath_ioctl.c	Wed Jan  3 19:22:10 2018	(r327526)
+++ head/sys/dev/ath/if_ath_ioctl.c	Wed Jan  3 19:24:21 2018	(r327527)
@@ -197,7 +197,7 @@ ath_ioctl_diag(struct ath_softc *sc, struct ath_diag *
 		 * pointer for us to use below in reclaiming the buffer;
 		 * may want to be more defensive.
 		 */
-		outdata = malloc(outsize, M_TEMP, M_NOWAIT | M_ZERO);
+		outdata = malloc(outsize, M_TEMP, M_NOWAIT);
 		if (outdata == NULL) {
 			error = ENOMEM;
 			goto bad;



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