This is an automated email from the git hooks/post-receive script.
rharwood pushed a change to branch master
in repository gssproxy.
from 4097daf [server] Add detailed request logging
new 60aee2c Fix double free of popt context when querying version
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/gssproxy.c | 1 -
1 file changed, 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
Show replies by date
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(a)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(a)redhat.com>
Reviewed-by: Simo Sorce <simo(a)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;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.