From 4f458437af227a924474c27ad75c705c23394445 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 26 Oct 2017 08:05:20 +0200 Subject: [PATCH] s3:vfs_glusterfs: Use SAFE_FREE Signed-off-by: Andreas Schneider Reviewed-by: Volker Lendecke Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Thu Oct 26 17:31:40 CEST 2017 on sn-devel-144 --- source3/modules/vfs_glusterfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c index 32074cba4eb..3534ed7027e 100644 --- a/source3/modules/vfs_glusterfs.c +++ b/source3/modules/vfs_glusterfs.c @@ -1100,7 +1100,7 @@ static struct smb_filename *vfs_gluster_getwd(struct vfs_handle_struct *handle, ret = glfs_getcwd(handle->data, cwd, PATH_MAX - 1); if (ret == NULL) { - free(cwd); + SAFE_FREE(cwd); return NULL; } smb_fname = synthetic_smb_fname(ctx, @@ -1108,7 +1108,7 @@ static struct smb_filename *vfs_gluster_getwd(struct vfs_handle_struct *handle, NULL, NULL, 0); - free(cwd); + SAFE_FREE(cwd); return smb_fname; } -- 2.11.4.GIT