1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

auth/credentials: don't call talloc_free(ccache_name) on callers memory

The internally allocated ccache_name has ccc as parent,
so we don't need to cleanup explicitly.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2024-02-27 16:22:14 +01:00
parent d221f930ef
commit 5af5bf2645

View File

@ -647,7 +647,6 @@ static int cli_credentials_new_ccache(struct cli_credentials *cred,
ccache_name, ccache_name,
smb_get_krb5_error_message(ccc->smb_krb5_context->krb5_context, smb_get_krb5_error_message(ccc->smb_krb5_context->krb5_context,
ret, ccc)); ret, ccc));
talloc_free(ccache_name);
talloc_free(ccc); talloc_free(ccc);
return ret; return ret;
} }