1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Fix mixup between talloc/malloc.

This commit is contained in:
Jeremy Allison 2012-03-01 10:57:17 -08:00
parent e29a9f4af7
commit e735b52254

View File

@ -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;
}