summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-09-25 08:53:29 -0700
committerKarolin Seeger <kseeger@samba.org>2019-10-16 19:25:12 +0000
commit2da0f65cd911e439d4c033f999a7549bc3610714 (patch)
treece114e26f60976b0a5bde2fd0b553c1970fb9044
parent2d62bd58db9f7c7e72b35ef1c62660107f06b8c9 (diff)
downloadsamba-2da0f65cd911e439d4c033f999a7549bc3610714.tar.gz
s3:lib: rework a return expression into an if block
Needed to add additional stuff after the if block in the next commit. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14137 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit d7dc85990a177954925644f9ff332b3481a03cc7)
-rw-r--r--source3/lib/filename_util.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/lib/filename_util.c b/source3/lib/filename_util.c
index 8a16bacddbe..6bf29c2b0c9 100644
--- a/source3/lib/filename_util.c
+++ b/source3/lib/filename_util.c
@@ -253,7 +253,11 @@ bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname)
return false;
}
- return smb_fname->stream_name != NULL;
+ if (smb_fname->stream_name == NULL) {
+ return false;
+ }
+
+ return true;
}
/****************************************************************************