This is an automated email from the git hooks/post-receive script.
rharwood pushed a change to branch master in repository gssproxy.
from 2f158fe Add Client ID to debug messages new 69a73d8 Fix memory leak
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: proxy/src/gp_export.c | 1 + 1 file changed, 1 insertion(+)
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master in repository gssproxy.
commit 69a73d85eb3e70fdc7501794d5fd11a73a1d20fa Author: Simo Sorce simo@redhat.com Date: Thu May 25 21:35:37 2017 -0400
Fix memory leak
Signed-off-by: Simo Sorce simo@redhat.com Reviewed-by: Robbie Harwood rharwood@redhat.com Related-to: #176 --- proxy/src/gp_export.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/proxy/src/gp_export.c b/proxy/src/gp_export.c index f44da50..4e081df 100644 --- a/proxy/src/gp_export.c +++ b/proxy/src/gp_export.c @@ -381,6 +381,7 @@ uint32_t gp_export_gssx_cred(uint32_t *min, struct gp_call_ctx *gpcall,
done: *min = ret_min; + gss_release_buffer(&ret_min, &token); gss_release_name(&ret_min, &name); gss_release_oid_set(&ret_min, &mechanisms); return ret_maj;
gss-proxy@lists.fedorahosted.org