Blame SOURCES/Always-free-ciphertext-data-in-gp_encrypt_buffer.patch

651382
From ccac7b766cd871aa0baeaebd697b386a47c28812 Mon Sep 17 00:00:00 2001
651382
From: Simo Sorce <simo@redhat.com>
651382
Date: Thu, 27 Aug 2020 15:35:40 -0400
651382
Subject: [PATCH] Always free ciphertext data in gp_encrypt_buffer
651382
651382
Signed-off-by: Simo Sorce <simo@redhat.com>
651382
[rharwood@redhat.com: rewrote commit message]
651382
Reviewed-by: Robbie Harwood <rharwood@redhat.com>
651382
(cherry picked from commit fe9e3c29caab90daf19028fb31ff28622d8708a9)
651382
(cherry picked from commit d9a37354c9a040b151fbd737b84b7cacb315ec9d)
651382
---
651382
 src/gp_export.c | 7 +++----
651382
 1 file changed, 3 insertions(+), 4 deletions(-)
651382
651382
diff --git a/src/gp_export.c b/src/gp_export.c
651382
index a5681c0..fb2f81b 100644
651382
--- a/src/gp_export.c
651382
+++ b/src/gp_export.c
651382
@@ -308,10 +308,9 @@ static int gp_encrypt_buffer(krb5_context context, krb5_keyblock *key,
651382
     ret = gp_conv_octet_string(enc_handle.ciphertext.length,
651382
                                enc_handle.ciphertext.data,
651382
                                out);
651382
-    if (ret) {
651382
-        free(enc_handle.ciphertext.data);
651382
-        goto done;
651382
-    }
651382
+    /* the conversion function copies the data, so free our copy
651382
+     * unconditionally, or we leak */
651382
+    free(enc_handle.ciphertext.data);
651382
 
651382
 done:
651382
     free(padded);