From 7ee9ac32485483beece872d6fcb3096fa77a004b Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Wed, 4 Mar 2015 14:08:09 +0100 Subject: ipa: make sure extdom expo data is available Reviewed-by: Jakub Hrozek --- src/providers/ipa/ipa_s2n_exop.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/providers/ipa/ipa_s2n_exop.c') diff --git a/src/providers/ipa/ipa_s2n_exop.c b/src/providers/ipa/ipa_s2n_exop.c index d5e948061..d3502443c 100644 --- a/src/providers/ipa/ipa_s2n_exop.c +++ b/src/providers/ipa/ipa_s2n_exop.c @@ -165,6 +165,11 @@ static void ipa_s2n_exop_done(struct sdap_op *op, ret = ERR_NETWORK_IO; goto done; } + if (retdata == NULL) { + DEBUG(SSSDBG_CRIT_FAILURE, "Missing exop result data.\n"); + ret = EINVAL; + goto done; + } state->retoid = talloc_strdup(state, retoid); if (state->retoid == NULL) { -- cgit