This is an automated email from the git hooks/post-receive script.
rharwood pushed a change to branch master in repository gssproxy.
from fbf882e Fix asprintf(3) call in ensure_segregated_ccache() new 348d5df Appease Coverity
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/mechglue/gpp_creds.c | 2 -- 1 file changed, 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master in repository gssproxy.
commit 348d5df4864639ebe50bfeaabd8c423233da24d6 Author: Robbie Harwood rharwood@redhat.com Date: Mon Feb 27 11:52:17 2017 -0500
Appease Coverity
There is only one call site of gpp_store_remote_creds(), and it already checks that `creds != NULL`, so we don't need to duplicate the check.
Signed-off-by: Robbie Harwood rharwood@redhat.com Reviewed-by: Simo Sorce simo@redhat.com PR: #52 --- proxy/src/mechglue/gpp_creds.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/proxy/src/mechglue/gpp_creds.c b/proxy/src/mechglue/gpp_creds.c index 37517d6..8fcef36 100644 --- a/proxy/src/mechglue/gpp_creds.c +++ b/proxy/src/mechglue/gpp_creds.c @@ -20,8 +20,6 @@ uint32_t gpp_store_remote_creds(uint32_t *min,
*min = 0;
- if (creds == NULL) return GSS_S_CALL_INACCESSIBLE_READ; - memset(&cred, 0, sizeof(cred));
ret = krb5_init_context(&ctx);
gss-proxy@lists.fedorahosted.org