diff options
| author | Attilio Rao <attilio@FreeBSD.org> | 2008-01-13 14:44:15 +0000 |
|---|---|---|
| committer | Attilio Rao <attilio@FreeBSD.org> | 2008-01-13 14:44:15 +0000 |
| commit | 22db15c06f1fbc66b47c8c931bbe291b9fd23d45 (patch) | |
| tree | 880b0acaab5ef09fe469c4b041d99ff26adca8b8 /sys/kern/kern_exec.c | |
| parent | ce4c63c52a45d7a3fc5c13b6c0a50fcece35a1f8 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_exec.c')
| -rw-r--r-- | sys/kern/kern_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 97eda1d8b424..2f81fcdcf721 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -491,7 +491,7 @@ interpret: } /* close files on exec */ - VOP_UNLOCK(imgp->vp, 0, td); + VOP_UNLOCK(imgp->vp, 0); fdcloseexec(td); vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY); @@ -591,7 +591,7 @@ interpret: */ PROC_UNLOCK(p); setugidsafety(td); - VOP_UNLOCK(imgp->vp, 0, td); + VOP_UNLOCK(imgp->vp, 0); error = fdcheckstd(td); vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY); if (error != 0) @@ -725,7 +725,7 @@ done1: crfree(oldcred); else crfree(newcred); - VOP_UNLOCK(imgp->vp, 0, td); + VOP_UNLOCK(imgp->vp, 0); /* * Handle deferred decrement of ref counts. */ |
