diff options
author | Jeremy Allison <jra@samba.org> | 2012-03-01 10:57:17 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-03-01 15:05:56 -0800 |
commit | e735b5225402b930ccc8c7c8fa03b988c3371a11 (patch) | |
tree | 647e984bf8eb950a84c599076552022b1f863761 /source3 | |
parent | e29a9f4af76f15030ba316690bdbb55806081fde (diff) | |
download | samba-e735b5225402b930ccc8c7c8fa03b988c3371a11.tar.gz samba-e735b5225402b930ccc8c7c8fa03b988c3371a11.tar.bz2 samba-e735b5225402b930ccc8c7c8fa03b988c3371a11.zip |
Fix mixup between talloc/malloc.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clifile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index 168dd4bb4c..216edacf27 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -4247,7 +4247,7 @@ NTSTATUS cli_set_ea_path(struct cli_state *cli, const char *path, status = cli_set_ea(cli, TRANSACT2_SETPATHINFO, param, param_len, ea_name, ea_val, ea_len); - SAFE_FREE(frame); + talloc_free(frame); return status; } |