From f86417b5ec41c4260c3a706811c2a3c075b9402d Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 6 Apr 2018 13:52:52 -0700 Subject: [PATCH] s3: smbd: Fix memory leak in vfswrap_getwd() Based on a patch from Andrew Walker . Signed-off-by: Jeremy Allison --- source3/modules/vfs_default.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index a26bec457ae..cf69f7a060e 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -2229,9 +2229,7 @@ static struct smb_filename *vfswrap_getwd(vfs_handle_struct *handle, NULL, NULL, 0); - if (smb_fname == NULL) { - SAFE_FREE(result); - } + SAFE_FREE(result); return smb_fname; } -- 2.17.0.484.g0c8726318c-goog