1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

vfs_glusterfs: realign synthetic_smb_fname() args in vfs_gluster_realpath()

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Ralph Boehme 2020-05-03 15:04:36 +02:00 committed by Jeremy Allison
parent f7bf27cbf4
commit b09881207a

View File

@ -1523,7 +1523,11 @@ static struct smb_filename *vfs_gluster_realpath(struct vfs_handle_struct *handl
smb_fname->base_name,
resolved_path);
if (result != NULL) {
result_fname = synthetic_smb_fname(ctx, result, NULL, NULL, 0);
result_fname = synthetic_smb_fname(ctx,
result,
NULL,
NULL,
0);
}
SAFE_FREE(resolved_path);