diff options
-rw-r--r-- | source3/smbd/open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 045635535f..492164ceee 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3332,12 +3332,12 @@ NTSTATUS get_relative_fid_filename(connection_struct *conn, dir_fsp = file_fsp(req, root_dir_fid); - if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) { + if (dir_fsp == NULL) { status = NT_STATUS_INVALID_HANDLE; goto out; } - if (dir_fsp == NULL) { + if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) { status = NT_STATUS_INVALID_HANDLE; goto out; } |