diff options
author | 1996-11-23 21:47:14 +0000 | |
---|---|---|
committer | 1996-11-23 21:47:14 +0000 | |
commit | 177c597a61cdcb115cd40a6ed03ff927561a6277 (patch) | |
tree | c3d9f0ae8f2abdf9c70a286fd8f4adb68e0783a8 /sys | |
parent | added const to second parameter of cfprint_t routines (diff) | |
download | wireguard-openbsd-177c597a61cdcb115cd40a6ed03ff927561a6277.tar.xz wireguard-openbsd-177c597a61cdcb115cd40a6ed03ff927561a6277.zip |
curproc is never NULL when this code is executed
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm_fault.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c index 915004c1fec..e591f555d16 100644 --- a/sys/vm/vm_fault.c +++ b/sys/vm/vm_fault.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_fault.c,v 1.4 1996/08/02 00:05:59 niklas Exp $ */ +/* $OpenBSD: vm_fault.c,v 1.5 1996/11/23 21:47:14 kstailey Exp $ */ /* $NetBSD: vm_fault.c,v 1.18 1996/05/20 17:40:02 mrg Exp $ */ /* @@ -331,8 +331,7 @@ vm_fault(map, vaddr, fault_type, change_wiring) */ UNLOCK_MAP; cnt.v_pageins++; - if (curproc) - curproc->p_addr->u_stats.p_ru.ru_majflt++; + curproc->p_addr->u_stats.p_ru.ru_majflt++; rv = vm_pager_get(object->pager, m, TRUE); /* |