summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_media_harmony.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/modules/vfs_media_harmony.c')
-rw-r--r--source3/modules/vfs_media_harmony.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/modules/vfs_media_harmony.c b/source3/modules/vfs_media_harmony.c
index 79b165c794..ce981e84cb 100644
--- a/source3/modules/vfs_media_harmony.c
+++ b/source3/modules/vfs_media_harmony.c
@@ -492,12 +492,11 @@ static int alloc_get_client_smb_fname(struct vfs_handle_struct *handle,
DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
smb_fname->base_name));
- copystatus = copy_smb_filename(ctx, smb_fname, clientFname);
- if (!NT_STATUS_IS_OK(copystatus))
- {
+ clientFname = cp_smb_filename(ctx, smb_fname);
+ if (clientFname == NULL) {
DEBUG(MH_ERR_DEBUG, ("alloc_get_client_smb_fname "
"NTERR\n"));
- errno = map_errno_from_nt_status(copystatus);
+ errno = ENOMEM;
status = -1;
goto err;
}