After r216626 no extra { } are needed with VFS_UNLOCK_GIANT().

This commit is contained in:
pjd 2010-12-21 22:01:26 +00:00
parent f097c06091
commit fef0f93e5f

View File

@ -1166,9 +1166,9 @@ out:
if (credanon != NULL)
crfree(credanon);
if (error) {
if (error)
VFS_UNLOCK_GIANT(vfslocked);
} else
else
*vfslockedp = vfslocked;
return (error);
}