Fix usage of uninitialized variable.

Found with:	Coverity Prevent
CID:		7517
MFC after:	2 weeks
This commit is contained in:
trasz 2010-06-03 14:27:18 +00:00
parent 45e71b2250
commit 26f044985f

View File

@ -46,7 +46,7 @@ static acl_t
_nfs4_acl_strip_np(const acl_t aclp, int recalculate_mask)
{
acl_t newacl;
mode_t mode;
mode_t mode = 0;
newacl = acl_init(ACL_MAX_ENTRIES);
if (newacl == NULL) {