summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2015-03-13 12:38:29 +0100
committerJakub Hrozek <jhrozek@redhat.com>2015-03-17 11:48:23 +0100
commitbefd8f4639ecef8185e82092beae801d68fa7eae (patch)
tree7a5f8268a3bf50223f2375d954811d1ab8b6dd0e
parent052e37d891612ea4637c6de99cc4982383d65947 (diff)
downloadsssd-befd8f4639ecef8185e82092beae801d68fa7eae.tar.gz
sssd-befd8f4639ecef8185e82092beae801d68fa7eae.tar.xz
sssd-befd8f4639ecef8185e82092beae801d68fa7eae.zip
ipa_selinux: Fix warning may be used uninitialized
src/providers/ipa/ipa_selinux.c: In function 'ipa_selinux_handler_done': src/providers/ipa/ipa_selinux.c:927:16: error: 'sci' may be used uninitialized in this function [-Werror=maybe-uninitialized] state->sci = sci; ^ src/providers/ipa/ipa_selinux.c:333:33: note: 'sci' was declared here struct selinux_child_input *sci; ^ cc1: all warnings being treated as errors Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
-rw-r--r--src/providers/ipa/ipa_selinux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_selinux.c b/src/providers/ipa/ipa_selinux.c
index 00c793a26..19bda3c46 100644
--- a/src/providers/ipa/ipa_selinux.c
+++ b/src/providers/ipa/ipa_selinux.c
@@ -330,7 +330,7 @@ static void ipa_selinux_handler_done(struct tevent_req *req)
struct sysdb_attrs **hbac_rules = 0;
struct sysdb_attrs **best_match_maps;
struct map_order_ctx *map_order_ctx;
- struct selinux_child_input *sci;
+ struct selinux_child_input *sci = NULL;
struct tevent_req *child_req;
ret = ipa_get_selinux_recv(req, breq, &map_count, &maps,