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

This commit is contained in:
Pawel Jakub Dawidek 2010-12-21 22:01:26 +00:00
parent 8dfec4a3d5
commit 644f6439f1

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);
}