From 22760c6d0a2e4848bbd63b8afc63f144b8bf96f6 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 3 Jan 2018 19:24:21 +0000 Subject: [PATCH] ath: revert accidental change committed with r327526 It will be recommitted with the correct commit message. --- sys/dev/ath/if_ath_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ath/if_ath_ioctl.c b/sys/dev/ath/if_ath_ioctl.c index 37122c16fc0..a7ba0e42df3 100644 --- a/sys/dev/ath/if_ath_ioctl.c +++ b/sys/dev/ath/if_ath_ioctl.c @@ -197,7 +197,7 @@ ath_ioctl_diag(struct ath_softc *sc, struct ath_diag *ad) * 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;