868320
From 7de67a994e84c2fadccb48c2448f2cba529a57fd Mon Sep 17 00:00:00 2001
868320
From: Volker Lendecke <vl@samba.org>
868320
Date: Wed, 31 Jul 2019 10:42:24 +0200
868320
Subject: [PATCH] smbd: Fix the build with clang
868320
868320
clang correctly complains that "close_fsp" is used uninitialized if
868320
"get_posix_fsp" fails and we end up in "goto out;".
868320
868320
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14251
868320
868320
Signed-off-by: Volker Lendecke <vl@samba.org>
868320
Reviewed-by: Jeremy Allison <jra@samba.org>
868320
(cherry picked from commit a8a1ca3f83dce6d725392989cbc97271cbf52f4a)
868320
---
868320
 source3/smbd/trans2.c | 2 +-
868320
 1 file changed, 1 insertion(+), 1 deletion(-)
868320
868320
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
868320
index b0616f15ade..8164c8fd213 100644
868320
--- a/source3/smbd/trans2.c
868320
+++ b/source3/smbd/trans2.c
868320
@@ -4848,7 +4848,7 @@ static NTSTATUS smb_query_posix_acl(connection_struct *conn,
868320
 	unsigned int size_needed = 0;
868320
 	NTSTATUS status;
868320
 	bool ok;
868320
-	bool close_fsp;
868320
+	bool close_fsp = false;
868320
 
868320
 	/*
868320
 	 * Ensure we always operate on a file descriptor, not just
868320
-- 
868320
2.24.1
868320