mirror of
https://github.com/samba-team/samba.git
synced 2025-03-12 20:58:37 +03:00
s3: modules: vfs_glusterfs: Fix leak of char **lines onto mem_ctx on return.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14486 Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Nov 3 01:56:59 UTC 2020 on sn-devel-184 (cherry picked from commit 7d846cd178d653600c71ee4bd6a491a9e48a56da) Autobuild-User(v4-13-test): Karolin Seeger <kseeger@samba.org> Autobuild-Date(v4-13-test): Tue Nov 3 10:16:27 UTC 2020 on sn-devel-184
This commit is contained in:
parent
3d5be93eea
commit
2599b6bd3e
@ -338,11 +338,13 @@ static int check_for_write_behind_translator(TALLOC_CTX *mem_ctx,
|
||||
"Please check the vfs_glusterfs(8) manpage for "
|
||||
"further details.\n",
|
||||
volume);
|
||||
TALLOC_FREE(lines);
|
||||
TALLOC_FREE(option);
|
||||
TALLOC_FREE(buf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
TALLOC_FREE(lines);
|
||||
TALLOC_FREE(option);
|
||||
TALLOC_FREE(buf);
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user