35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 01f0d067f1e4ba8ec3710f515d21631a53c9c9ef Mon Sep 17 00:00:00 2001
|
|
From: Alexey Tikhonov <atikhono@redhat.com>
|
|
Date: Tue, 20 Jun 2023 16:48:07 +0200
|
|
Subject: [PATCH] KRB5: fixed RESOURCE_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/01f0d067f1e4ba8ec3710f515d21631a53c9c9ef
|
|
Conflict: NA
|
|
---
|
|
src/providers/krb5/krb5_keytab.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/providers/krb5/krb5_keytab.c b/src/providers/krb5/krb5_keytab.c
|
|
index e70408b9b..db383d411 100644
|
|
--- a/src/providers/krb5/krb5_keytab.c
|
|
+++ b/src/providers/krb5/krb5_keytab.c
|
|
@@ -214,6 +214,9 @@ done:
|
|
|
|
if (kerr != 0) {
|
|
talloc_free(mem_name);
|
|
+ if ((mem_keytab != NULL) && krb5_kt_close(kctx, mem_keytab) != 0) {
|
|
+ DEBUG(SSSDBG_MINOR_FAILURE, "krb5_kt_close failed.\n");
|
|
+ }
|
|
}
|
|
|
|
if (tmp_mem_keytab != NULL && krb5_kt_close(kctx, tmp_mem_keytab) != 0) {
|
|
--
|
|
2.27.0
|
|
|