1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

pam_winbind: Fix a memleak

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2022-11-04 11:23:52 +01:00 committed by Jeremy Allison
parent 59b5abbe8c
commit 9735498f60

View File

@ -2461,6 +2461,7 @@ static char winbind_get_separator(struct pwb_context *ctx)
{
wbcErr wbc_status;
static struct wbcInterfaceDetails *details = NULL;
char result;
wbc_status = wbcCtxInterfaceDetails(ctx->wbc_ctx, &details);
if (!WBC_ERROR_IS_OK(wbc_status)) {
@ -2474,7 +2475,9 @@ static char winbind_get_separator(struct pwb_context *ctx)
return '\0';
}
return details->winbind_separator;
result = details->winbind_separator;
wbcFreeMemory(details);
return result;
}