mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
Avoid gcc -Werror=maybe-uninitialized warnings
Explicitly set acl details to zero to silence gcc (zfs_acl_node_read can't be sure zfs_acl_znode_info will set acl_count and aclsize). Normally suppressing these warnings by setting this to zero at declaration time is a bad idea but in this instance it's hard to avoid and should be fairly safe. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #1244
This commit is contained in:
parent
6772fb679a
commit
ddc07fa57a
@ -1056,8 +1056,8 @@ zfs_acl_node_read(znode_t *zp, boolean_t have_lock, zfs_acl_t **aclpp,
|
|||||||
boolean_t will_modify)
|
boolean_t will_modify)
|
||||||
{
|
{
|
||||||
zfs_acl_t *aclp;
|
zfs_acl_t *aclp;
|
||||||
int aclsize;
|
int aclsize = 0;
|
||||||
int acl_count;
|
int acl_count = 0;
|
||||||
zfs_acl_node_t *aclnode;
|
zfs_acl_node_t *aclnode;
|
||||||
zfs_acl_phys_t znode_acl;
|
zfs_acl_phys_t znode_acl;
|
||||||
int version;
|
int version;
|
||||||
|
Loading…
Reference in New Issue
Block a user