smbd: Convert call_trans2qfilepathinfo to synthetic_smb_fname
authorVolker Lendecke <vl@samba.org>
Mon, 15 Apr 2013 08:49:46 +0000 (10:49 +0200)
committerJeremy Allison <jra@samba.org>
Wed, 17 Apr 2013 21:50:00 +0000 (14:50 -0700)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/smbd/trans2.c

index dcd2af23208806cc8511e4827f40c1bb36882100..6186e5ce3f6ba9e99abc5551237d8586d1e7ddcf 100644 (file)
@@ -5331,16 +5331,14 @@ static void call_trans2qfilepathinfo(connection_struct *conn,
                /* If this is a stream, check if there is a delete_pending. */
                if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
                    && is_ntfs_stream_smb_fname(smb_fname)) {
-                       struct smb_filename *smb_fname_base = NULL;
+                       struct smb_filename *smb_fname_base;
 
                        /* Create an smb_filename with stream_name == NULL. */
-                       status =
-                           create_synthetic_smb_fname(talloc_tos(),
-                                                      smb_fname->base_name,
-                                                      NULL, NULL,
-                                                      &smb_fname_base);
-                       if (!NT_STATUS_IS_OK(status)) {
-                               reply_nterror(req, status);
+                       smb_fname_base = synthetic_smb_fname(
+                               talloc_tos(), smb_fname->base_name,
+                               NULL, NULL);
+                       if (smb_fname_base == NULL) {
+                               reply_nterror(req, NT_STATUS_NO_MEMORY);
                                return;
                        }