summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_bpf.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_bpf.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_bpf.c')
-rw-r--r--sys/netgraph/ng_bpf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netgraph/ng_bpf.c b/sys/netgraph/ng_bpf.c
index b884c53..8b09b6a 100644
--- a/sys/netgraph/ng_bpf.c
+++ b/sys/netgraph/ng_bpf.c
@@ -237,10 +237,9 @@ ng_bpf_newhook(node_p node, hook_p hook, const char *name)
int error;
/* Create hook private structure */
- MALLOC(hip, hinfo_p, sizeof(*hip), M_NETGRAPH, M_NOWAIT);
+ MALLOC(hip, hinfo_p, sizeof(*hip), M_NETGRAPH, M_NOWAIT | M_ZERO);
if (hip == NULL)
return (ENOMEM);
- bzero(hip, sizeof(*hip));
hip->hook = hook;
hook->private = hip;
hip->node = node;
OpenPOWER on IntegriCloud