PR: kern/9970

Remove incorrect vput() in nfs_link()
This commit is contained in:
Matthew Dillon 1999-02-13 08:01:59 +00:00
parent c20b4df657
commit 5e9d4f1303
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43956
2 changed files with 2 additions and 4 deletions

View file

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95
* $Id: nfs_vnops.c,v 1.119 1999/01/27 22:45:49 dillon Exp $
* $Id: nfs_vnops.c,v 1.120 1999/02/06 07:48:56 dillon Exp $
*/
@ -1699,7 +1699,6 @@ nfs_link(ap)
if (vp->v_mount != tdvp->v_mount) {
VOP_ABORTOP(tdvp, cnp);
vput(tdvp);
return (EXDEV);
}

View file

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95
* $Id: nfs_vnops.c,v 1.119 1999/01/27 22:45:49 dillon Exp $
* $Id: nfs_vnops.c,v 1.120 1999/02/06 07:48:56 dillon Exp $
*/
@ -1699,7 +1699,6 @@ nfs_link(ap)
if (vp->v_mount != tdvp->v_mount) {
VOP_ABORTOP(tdvp, cnp);
vput(tdvp);
return (EXDEV);
}