30 lines
1011 B
Diff
30 lines
1011 B
Diff
From ee3cd052a2aca57040a9b435def5442922f8af76 Mon Sep 17 00:00:00 2001
|
|
From: Sumit Bose <sbose@redhat.com>
|
|
Date: Thu, 19 Mar 2015 14:26:26 +0100
|
|
Subject: [PATCH 35/99] IPA: make sure output variable is set
|
|
|
|
Reviewed-by: Pavel Reichl <preichl@redhat.com>
|
|
(cherry picked from commit abb093b4ae10f2a5748bf9f194bf76794002eba0)
|
|
---
|
|
src/providers/ipa/ipa_s2n_exop.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/providers/ipa/ipa_s2n_exop.c b/src/providers/ipa/ipa_s2n_exop.c
|
|
index 89fe0ce2289e58e0199a394a1377758569f463f7..c7fd1009b14bcfa7502236bbf707fcbe72f537c1 100644
|
|
--- a/src/providers/ipa/ipa_s2n_exop.c
|
|
+++ b/src/providers/ipa/ipa_s2n_exop.c
|
|
@@ -1253,7 +1253,9 @@ static errno_t process_members(struct sss_domain_info *domain,
|
|
|
|
if (members == NULL) {
|
|
DEBUG(SSSDBG_TRACE_INTERNAL, "No members\n");
|
|
- *_missing_members = NULL;
|
|
+ if (_missing_members != NULL) {
|
|
+ *_missing_members = NULL;
|
|
+ }
|
|
return EOK;
|
|
}
|
|
|
|
--
|
|
2.4.0
|
|
|