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

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