From edb7293020737b7dc6aeaf98654f58a8d4c34227 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 15 Apr 2013 10:49:46 +0200 Subject: smbd: Convert call_trans2qfilepathinfo to synthetic_smb_fname Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/smbd/trans2.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'source3') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index dcd2af2320..6186e5ce3f 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -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; } -- cgit