svn commit: r311778 - stable/10/sys/kern
Konstantin Belousov
kib at FreeBSD.org
Mon Jan 9 10:30:25 UTC 2017
Author: kib
Date: Mon Jan 9 10:30:24 2017
New Revision: 311778
URL: https://svnweb.freebsd.org/changeset/base/311778
Log:
MFC r311111:
Style.
Modified:
stable/10/sys/kern/vfs_syscalls.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/kern/vfs_syscalls.c
==============================================================================
--- stable/10/sys/kern/vfs_syscalls.c Mon Jan 9 10:29:13 2017 (r311777)
+++ stable/10/sys/kern/vfs_syscalls.c Mon Jan 9 10:30:24 2017 (r311778)
@@ -387,7 +387,7 @@ kern_fstatfs(struct thread *td, int fd,
AUDIT_ARG_VNODE1(vp);
#endif
mp = vp->v_mount;
- if (mp)
+ if (mp != NULL)
vfs_ref(mp);
VOP_UNLOCK(vp, 0);
fdrop(fp, td);
More information about the svn-src-stable
mailing list