Fix usage of uninitialized variable.

Found with:	Coverity Prevent
CID:		7517
Approved by:	re (kib)
This commit is contained in:
Edward Tomasz Napierala 2010-06-11 15:21:12 +00:00
parent f19e4a24de
commit 5ad296377c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=209046

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) {