From c59ab01e33aa5fbfd3837d311c0e65593ab7a08a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 1 Aug 2010 20:15:57 +0200 Subject: s3: Fix an uninitialized variable --- source3/modules/vfs_acl_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c index 79eb533af7..46ff2e6f0c 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -251,7 +251,7 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct *handle, { DATA_BLOB blob; NTSTATUS status; - uint16_t hash_type; + uint16_t hash_type = XATTR_SD_HASH_TYPE_NONE; uint8_t hash[XATTR_SD_HASH_SIZE]; uint8_t hash_tmp[XATTR_SD_HASH_SIZE]; struct security_descriptor *psd = NULL; -- cgit