Blame SOURCES/Fix-double-free-of-popt-context-when-querying-versio.patch

472fdf
From 3203f956cd77c43b6432b01d2d82950e9dac3580 Mon Sep 17 00:00:00 2001
472fdf
From: Robbie Harwood <rharwood@redhat.com>
472fdf
Date: Thu, 24 Aug 2017 15:13:52 -0400
472fdf
Subject: [PATCH] Fix double free of popt context when querying version
472fdf
472fdf
This is a non-exploitable, cosmetic issue which causes a segfault (in
472fdf
some cases) rather than a clean exit of the program.
472fdf
472fdf
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
472fdf
Reviewed-by: Simo Sorce <simo@redhat.com>
472fdf
Merges: #209
472fdf
(cherry picked from commit 6ef4eb72bef742ed1ebb2824df5a600819e19666)
472fdf
---
472fdf
 proxy/src/gssproxy.c | 1 -
472fdf
 1 file changed, 1 deletion(-)
472fdf
472fdf
diff --git a/proxy/src/gssproxy.c b/proxy/src/gssproxy.c
472fdf
index 3b6a16e..3221615 100644
472fdf
--- a/proxy/src/gssproxy.c
472fdf
+++ b/proxy/src/gssproxy.c
472fdf
@@ -202,7 +202,6 @@ int main(int argc, const char *argv[])
472fdf
 
472fdf
     if (opt_version) {
472fdf
         puts(VERSION""DISTRO_VERSION""PRERELEASE_VERSION);
472fdf
-        poptFreeContext(pc);
472fdf
         ret = 0;
472fdf
         goto cleanup;
472fdf
     }