summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_tty.c
diff options
context:
space:
mode:
authordwmalone <dwmalone@FreeBSD.org>2000-11-18 15:17:43 +0000
committerdwmalone <dwmalone@FreeBSD.org>2000-11-18 15:17:43 +0000
commit918549eb3151450239d659ae968cb9e68b863bfc (patch)
tree5e63335d7dfc31ef8cf13f89356a8b83776cef7e /sys/netgraph/ng_tty.c
parentf96d89a937a5b22a14182cb1b88b68dc430ee718 (diff)
downloadFreeBSD-src-918549eb3151450239d659ae968cb9e68b863bfc.zip
FreeBSD-src-918549eb3151450239d659ae968cb9e68b863bfc.tar.gz
Add the use of M_ZERO to netgraph.
Submitted by: josh@zipperup.org Submitted by: Robert Drehmel <robd@gmx.net> Submitted by: archie Approved by: archie
Diffstat (limited to 'sys/netgraph/ng_tty.c')
-rw-r--r--sys/netgraph/ng_tty.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netgraph/ng_tty.c b/sys/netgraph/ng_tty.c
index e217f3a..74e4d18 100644
--- a/sys/netgraph/ng_tty.c
+++ b/sys/netgraph/ng_tty.c
@@ -208,12 +208,11 @@ ngt_open(dev_t dev, struct tty *tp)
}
/* Initialize private struct */
- MALLOC(sc, sc_p, sizeof(*sc), M_NETGRAPH, M_WAITOK);
+ MALLOC(sc, sc_p, sizeof(*sc), M_NETGRAPH, M_WAITOK | M_ZERO);
if (sc == NULL) {
error = ENOMEM;
goto done;
}
- bzero(sc, sizeof(*sc));
sc->tp = tp;
sc->hotchar = NG_TTY_DFL_HOTCHAR;
sc->qtail = &sc->qhead;
OpenPOWER on IntegriCloud