CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2018/07/04 18:00:18
Modified files: sys/kern : vfs_lookup.c Log message: Plug a vnode leak in namei(). If the file system is unmounted during name lookup, the directory vnode was not released. Add a vrele() to the error return path. NetBSD has added a vput() there after we imported the check. OK krw@ visa@