diff options
-rw-r--r-- | source3/smbd/open.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 1086e806fb..78b824541a 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -387,13 +387,12 @@ void change_file_owner_to_parent(connection_struct *conn, const char *inherit_from_dir, files_struct *fsp) { - struct smb_filename *smb_fname_parent = NULL; - NTSTATUS status; + struct smb_filename *smb_fname_parent; int ret; - status = create_synthetic_smb_fname(talloc_tos(), inherit_from_dir, - NULL, NULL, &smb_fname_parent); - if (!NT_STATUS_IS_OK(status)) { + smb_fname_parent = synthetic_smb_fname(talloc_tos(), inherit_from_dir, + NULL, NULL); + if (smb_fname_parent == NULL) { return; } |