This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master in repository gssproxy.
commit 60aee2c23c34e435df3d4b031b7a2b2d5db33f6b Author: Robbie Harwood rharwood@redhat.com Date: Thu Aug 24 15:13:52 2017 -0400
Fix double free of popt context when querying version
This is a non-exploitable, cosmetic issue which causes a segfault (in some cases) rather than a clean exit of the program.
Signed-off-by: Robbie Harwood rharwood@redhat.com Reviewed-by: Simo Sorce simo@redhat.com Merges: #209 --- proxy/src/gssproxy.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/proxy/src/gssproxy.c b/proxy/src/gssproxy.c index 5fc4f8d..2461f41 100644 --- a/proxy/src/gssproxy.c +++ b/proxy/src/gssproxy.c @@ -202,7 +202,6 @@ int main(int argc, const char *argv[])
if (opt_version) { puts(VERSION""DISTRO_VERSION""PRERELEASE_VERSION); - poptFreeContext(pc); ret = 0; goto cleanup; }