[ 
https://issues.apache.org/jira/browse/SERF-153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Zhakov closed SERF-153.
----------------------------

> CredHandle not freed when APR pool is destroyed
> -----------------------------------------------
>
>                 Key: SERF-153
>                 URL: https://issues.apache.org/jira/browse/SERF-153
>             Project: serf
>          Issue Type: Bug
>            Reporter: Michael Osipov
>            Priority: Major
>              Labels: Priority-Medium, Type-Defect
>             Fix For: serf-1.3.9
>
>
> In auth_spnego_sspi.c from line 97
>  if (SecIsValidHandle(&ctx->sspi_credentials)) {
>         FreeCredentialsHandle(&ctx->sspi_context);
>         SecInvalidateHandle(&ctx->sspi_context);
>     }
> I guess this should read
>  if (SecIsValidHandle(&ctx->sspi_credentials)) {
>         FreeCredentialsHandle(&ctx->sspi_credentials);
>         SecInvalidateHandle(&ctx->sspi_credentials);
>     }
> Shouldn't it?



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to