Fix usage of uninitialized variable.
Found with: Coverity Prevent CID: 7517 MFC after: 2 weeks
This commit is contained in:
parent
45e71b2250
commit
26f044985f
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user