Fix lint error

This commit is contained in:
Arun Prakash Jana 2019-11-20 01:34:07 +05:30
parent 3a9def25d8
commit cc3702b2e1
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

View File

@ -1363,8 +1363,9 @@ static bool xmkentryp(char* path, bool dir)
DPRINTF_S("open fail");
DPRINTF_S(strerror(errno));
return FALSE;
} else
close(fd);
}
close(fd);
}
return TRUE;