summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2014-01-13 09:27:40 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2014-01-13 09:27:40 +0000
commit6bcbd7f126fe0cda6eb773b111bd82ebf8bd7fdd (patch)
treef11ac14bbb67f2f75299447aa2e1d88a95c6b595 /sys/kern
parent4e7ac527eb184d90a9fc9de046fee8209b5623f7 (diff)
Return the poison value in poison_check() and not the modified value.
ok tedu@
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/subr_poison.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_poison.c b/sys/kern/subr_poison.c
index 7ead1d549d3..62090621508 100644
--- a/sys/kern/subr_poison.c
+++ b/sys/kern/subr_poison.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_poison.c,v 1.5 2013/05/31 18:29:32 deraadt Exp $ */
+/* $OpenBSD: subr_poison.c,v 1.6 2014/01/13 09:27:39 mpi Exp $ */
/*
* Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
*
@@ -77,7 +77,7 @@ poison_check(void *v, size_t len, size_t *pidx, int *pval)
for (i = 0; i < len; i++) {
if (ip[i] != poison) {
*pidx = i;
- *pval = ip[i];
+ *pval = poison;
return 1;
}
}