Blame SOURCES/0005-tools-remove-errx-from-setup_krb5_conf_directory.patch

539d92
From b8f5d995d30c17eb8bec3ac5e0777ea94f5b76c3 Mon Sep 17 00:00:00 2001
539d92
From: Sumit Bose <sbose@redhat.com>
539d92
Date: Mon, 15 Apr 2019 18:00:52 +0200
539d92
Subject: [PATCH 5/7] tools: remove errx from setup_krb5_conf_directory
539d92
539d92
Related to https://bugzilla.redhat.com/show_bug.cgi?id=1588596
539d92
---
539d92
 tools/tools.c | 38 ++++++++++++++++++++++++--------------
539d92
 1 file changed, 24 insertions(+), 14 deletions(-)
539d92
539d92
diff --git a/tools/tools.c b/tools/tools.c
539d92
index bdf6d38..fc9fa9a 100644
539d92
--- a/tools/tools.c
539d92
+++ b/tools/tools.c
539d92
@@ -327,21 +327,31 @@ setup_krb5_conf_directory (adcli_conn *conn)
539d92
 	}
539d92
 
539d92
 	if (asprintf (&directory, "%s%sadcli-krb5-XXXXXX", parent,
539d92
-	              (parent[0] && parent[strlen(parent) - 1] == '/') ? "" : "/") < 0)
539d92
-		errx (1, "unexpected: out of memory");
539d92
-
539d92
-	if (mkdtemp (directory) == NULL) {
539d92
-		errn = errno;
539d92
+	              (parent[0] && parent[strlen(parent) - 1] == '/') ? "" : "/") < 0) {
539d92
+		warnx ("unexpected: out of memory");
539d92
+		directory = NULL; /* content is undefined */
539d92
 		failed = 1;
539d92
-		warnx ("couldn't create temporary directory in: %s: %s",
539d92
-		       parent, strerror (errn));
539d92
-	} else {
539d92
-		if (asprintf (&filename, "%s/krb5.conf", directory) < 0 ||
539d92
-		    asprintf (&snippets, "%s/krb5.d", directory) < 0 ||
539d92
-		    asprintf (&contents, "includedir %s\n%s%s\n", snippets,
539d92
-		              krb5_conf ? "include " : "",
539d92
-		              krb5_conf ? krb5_conf : "") < 0)
539d92
-			errx (1, "unexpected: out of memory");
539d92
+	}
539d92
+
539d92
+	if (!failed) {
539d92
+		if (mkdtemp (directory) == NULL) {
539d92
+			errn = errno;
539d92
+			failed = 1;
539d92
+			warnx ("couldn't create temporary directory in: %s: %s",
539d92
+			       parent, strerror (errn));
539d92
+		} else {
539d92
+			if (asprintf (&filename, "%s/krb5.conf", directory) < 0 ||
539d92
+			    asprintf (&snippets, "%s/krb5.d", directory) < 0 ||
539d92
+			    asprintf (&contents, "includedir %s\n%s%s\n", snippets,
539d92
+			              krb5_conf ? "include " : "",
539d92
+			              krb5_conf ? krb5_conf : "") < 0) {
539d92
+				warnx ("unexpected: out of memory");
539d92
+				filename = NULL; /* content is undefined */
539d92
+				snippets = NULL; /* content is undefined */
539d92
+				contents = NULL; /* content is undefined */
539d92
+				failed = 1;
539d92
+			}
539d92
+		}
539d92
 	}
539d92
 
539d92
 	if (!failed) {
539d92
-- 
539d92
2.20.1
539d92