nfs4: Remove check for presence of mandatory attributes

This fixes CID 991495.
This commit is contained in:
Pawel Dziepak 2013-03-19 02:55:31 +01:00
parent b302859608
commit 5bdf33bc7a

View File

@ -86,7 +86,7 @@ Inode::CreateInode(FileSystem* fs, const FileInfo& fi, Inode** _inode)
AttrValue* values;
uint32 count;
result = reply.GetAttr(&values, &count);
if (result != B_OK || count < 4)
if (result != B_OK)
return result;
if (fi.fFileId == 0) {