Fix an off-by-one in the free(9) "passed size was too small" check:
authorguenther <guenther@openbsd.org>
Tue, 2 Jan 2018 06:07:21 +0000 (06:07 +0000)
committerguenther <guenther@openbsd.org>
Tue, 2 Jan 2018 06:07:21 +0000 (06:07 +0000)
commit29e477084e4cf41df33525bd7f1c7464ee47f717
tree98715785564a50f0ce9e28fe2fd5fc38209e1690
parent9d32a4f2247b00c5afdca7320a09a26dcc46b648
Fix an off-by-one in the free(9) "passed size was too small" check:
if the size passed is exactly half the size of the bucket that the
allocation was actually from, then it was incorrect.

problem noted by florian@
ok florian@ visa@
sys/kern/kern_malloc.c