Avoid gcc -Werror=maybe-uninitialized warnings
authorChris Wedgwood <cw@f00f.org>
Sat, 26 Jan 2013 02:19:45 +0000 (18:19 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 28 Jan 2013 17:10:29 +0000 (09:10 -0800)
commitddc07fa57a2e002822ae30f2e18c5427f4e3eb74
tree9314cefe660b98fdc960201195cc58ae490e9ee2
parent6772fb679a4205427a385d174359b2a5826da613
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
module/zfs/zfs_acl.c