From 0319903b31474575baa78abac30004693f574158 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Sat, 22 Sep 2012 13:33:02 -0700 Subject: s3:vfs_fake_acls fix a compiler warning about acl being potentially uninitialized Autobuild-User(master): Christian Ambach Autobuild-Date(master): Sun Sep 23 01:08:39 CEST 2012 on sn-devel-104 --- source3/modules/vfs_fake_acls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_fake_acls.c b/source3/modules/vfs_fake_acls.c index 258cb197c0..6390b67395 100644 --- a/source3/modules/vfs_fake_acls.c +++ b/source3/modules/vfs_fake_acls.c @@ -269,7 +269,7 @@ static SMB_ACL_T fake_acls_sys_acl_get_fd(struct vfs_handle_struct *handle, file DATA_BLOB blob = data_blob_null; ssize_t length; const char *name = FAKE_ACL_ACCESS_XATTR; - struct smb_acl_t *acl; + struct smb_acl_t *acl = NULL; TALLOC_CTX *frame = talloc_stackframe(); do { -- cgit