View | Details | Raw Unified | Return to bug 22189
Collapse All | Expand All

(-)linux/linux_mib.c (-2 / +1 lines)
Lines 123-130 Link Here
123
123
124
	if (pr->pr_linux == NULL) {
124
	if (pr->pr_linux == NULL) {
125
		MALLOC(lpr, struct linux_prison *, sizeof *lpr,
125
		MALLOC(lpr, struct linux_prison *, sizeof *lpr,
126
		       M_PRISON, M_WAITOK);
126
		       M_PRISON, M_WAITOK | M_ZERO);
127
		bzero((caddr_t)lpr, sizeof *lpr);
128
		pr->pr_linux = lpr;
127
		pr->pr_linux = lpr;
129
	}
128
	}

Return to bug 22189