summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2021-01-29 10:47:25 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2021-01-29 10:47:25 +0000
commita39b89c7754cc382b01ec6c563bc1e4810f7d613 (patch)
treec725211a8f1d62e7f720c8b3834bb8a32cb3eef8
parentcb65f44ba1b47b9fc84b374c3cf8c0df40d6fd14 (diff)
Use NULL instead of 0 to clear v_socket pointer (which actually clears all
of the v_un pointers). OK jsg@ mvs@
-rw-r--r--sys/kern/vfs_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index e9ee6659bef..2a6adabe6af 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_subr.c,v 1.303 2020/08/23 09:35:32 kn Exp $ */
+/* $OpenBSD: vfs_subr.c,v 1.304 2021/01/29 10:47:24 claudio Exp $ */
/* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */
/*
@@ -453,7 +453,7 @@ getnewvnode(enum vtagtype tag, struct mount *mp, const struct vops *vops,
splx(s);
#endif
vp->v_flag = 0;
- vp->v_socket = 0;
+ vp->v_socket = NULL;
}
cache_purge(vp);
vp->v_type = VNON;