This is an automated email from the git hooks/post-receive script.
simo pushed a commit to branch master in repository gssproxy.
commit 4e968b12bd7b632b481fbaee30f5a022f28d8a9d Author: Robbie Harwood rharwood@redhat.com Date: Thu Oct 13 19:17:56 2016 +0000
Fix leak of ach in gp_accept_sec_context()
Signed-off-by: Robbie Harwood rharwood@redhat.com Reviewed-by: Simo Sorce simo@redhat.com Merges #34 --- proxy/src/gp_rpc_accept_sec_context.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/proxy/src/gp_rpc_accept_sec_context.c b/proxy/src/gp_rpc_accept_sec_context.c index 4bb892b..22a4cf7 100644 --- a/proxy/src/gp_rpc_accept_sec_context.c +++ b/proxy/src/gp_rpc_accept_sec_context.c @@ -160,6 +160,7 @@ done: gss_release_name(&ret_min, &src_name); gss_release_buffer(&ret_min, &obuf); gss_release_cred(&ret_min, &dch); + gss_release_cred(&ret_min, &ach); gss_delete_sec_context(&ret_min, &ctx, GSS_C_NO_BUFFER);
return ret;