summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/wsmux.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-08-28 00:03:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-08-28 00:03:55 +0000
commit5ad0e8c0aeab06cc8ce3a15ee37adfe7cc17c615 (patch)
tree4c6488a821b9d519bda84a6732552a136bbdbd76 /sys/dev/wscons/wsmux.c
parent345b5260c0d266903c3e0fe179df2a1d3c10a5dc (diff)
fairly simple sizes for free(); ok tedu
Diffstat (limited to 'sys/dev/wscons/wsmux.c')
-rw-r--r--sys/dev/wscons/wsmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsmux.c b/sys/dev/wscons/wsmux.c
index 2014121b3b1..c1a3f978fac 100644
--- a/sys/dev/wscons/wsmux.c
+++ b/sys/dev/wscons/wsmux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsmux.c,v 1.29 2015/03/14 03:38:50 jsg Exp $ */
+/* $OpenBSD: wsmux.c,v 1.30 2015/08/28 00:03:53 deraadt Exp $ */
/* $NetBSD: wsmux.c,v 1.37 2005/04/30 03:47:12 augustss Exp $ */
/*
@@ -145,7 +145,7 @@ wsmux_getmux(int n)
wsmuxdevs = new;
nwsmux = n + 1;
if (old != NULL)
- free(old, M_DEVBUF, 0);
+ free(old, M_DEVBUF, nwsmux * sizeof(*wsmuxdevs));
}
sc = wsmuxdevs[n];