diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 07:07:58 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 07:07:58 +0000 |
commit | b72c7c51d28aa75cf9bf3ee33fc249b673607d7c (patch) | |
tree | 7c5f9d4b2c47871be72ec034500e5c906b333b3b /sys/kern | |
parent | 7a94a41062cfdd6ee156cd226f38e04f982249df (diff) |
Not really a bug but one day panic might throw an exception or something. THanks to dawson and team for fix
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/uipc_mbuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 4436f9f9074..1b33e500d99 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_mbuf.c,v 1.22 2000/03/03 11:15:43 angelos Exp $ */ +/* $OpenBSD: uipc_mbuf.c,v 1.23 2001/03/25 07:07:57 csapuntz Exp $ */ /* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */ /* @@ -84,6 +84,7 @@ mbinit() splx(s); return; bad: + splx(s); panic("mbinit"); } |