From a8a1ca3f83dce6d725392989cbc97271cbf52f4a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 31 Jul 2019 10:42:24 +0200 Subject: [PATCH] smbd: Fix the build with clang clang correctly complains that "close_fsp" is used uninitialized if "get_posix_fsp" fails and we end up in "goto out;". Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/smbd/trans2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 6ecd467a321..41f8dac13f0 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -4918,7 +4918,7 @@ static NTSTATUS smb_query_posix_acl(connection_struct *conn, unsigned int size_needed = 0; NTSTATUS status; bool ok; - bool close_fsp; + bool close_fsp = false; /* * Ensure we always operate on a file descriptor, not just -- 2.47.3