35 lines
958 B
Diff
35 lines
958 B
Diff
From b69ff375a2b185219bae91c48aa7bfb3138b98f2 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Tikhonov <atikhono@redhat.com>
|
|
Date: Mon, 19 Jun 2023 21:53:28 +0200
|
|
Subject: [PATCH] KRB5: fix memory leak
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Reviewed-by: Alejandro López <allopez@redhat.com>
|
|
Reviewed-by: Tomáš Halman <thalman@redhat.com>
|
|
|
|
Reference: https://github.com/SSSD/sssd/commit/b69ff375a2b185219bae91c48aa7bfb3138b98f2
|
|
Conflict: NA
|
|
---
|
|
src/providers/krb5/krb5_child.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
|
|
index f69cd6d54..774b47e3a 100644
|
|
--- a/src/providers/krb5/krb5_child.c
|
|
+++ b/src/providers/krb5/krb5_child.c
|
|
@@ -1400,6 +1400,9 @@ done:
|
|
/* FIXME: should we krb5_cc_destroy in case of error? */
|
|
krb5_cc_close(kctx, kcc);
|
|
}
|
|
+
|
|
+ krb5_free_context(kctx);
|
|
+
|
|
return kerr;
|
|
}
|
|
|
|
--
|
|
2.27.0
|
|
|