diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2014-08-12 01:31:44 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2014-08-12 01:31:44 +0000 |
commit | 9a5cac98d1a78ba397f0923ce406a2e9dab83a6a (patch) | |
tree | 6e8c60108efdc147132241c84414a27ca0a045d4 /sys/kern | |
parent | 71fc3352ff4f84f91b802622ed80e0e93efb77e4 (diff) |
sigh. when returning ENOENT in the sysctl path, unlock on the way out.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index e3fb051fbda..567f5815813 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.144 2014/08/12 01:25:21 dlg Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.145 2014/08/12 01:31:43 dlg Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -1485,9 +1485,9 @@ sysctl_dopool(int *name, u_int namelen, char *oldp, size_t *oldlenp) rv = sysctl_rdstruct(oldp, oldlenp, NULL, &pi, sizeof(pi)); } +done: splx(s); -done: return (rv); } |