summaryrefslogtreecommitdiffstats
path: root/src/providers
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2012-11-09 15:13:26 +0100
committerJakub Hrozek <jhrozek@redhat.com>2012-11-16 17:54:46 +0100
commit2faa9ecad5a45a949be5ea95aa9e140eeba0fe68 (patch)
treeb6a65da8de6af34bb430bd12427e1ed9d4f46cb0 /src/providers
parentf70dc1039451863bebb1a3af5d6eb027f40de8e7 (diff)
downloadsssd-2faa9ecad5a45a949be5ea95aa9e140eeba0fe68.tar.gz
sssd-2faa9ecad5a45a949be5ea95aa9e140eeba0fe68.tar.xz
sssd-2faa9ecad5a45a949be5ea95aa9e140eeba0fe68.zip
fix -O3 variable may be uninitialized warnings
Diffstat (limited to 'src/providers')
-rw-r--r--src/providers/ldap/sdap_async_groups.c8
-rw-r--r--src/providers/ldap/sdap_sudo.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c
index 67dddae70..3948a7436 100644
--- a/src/providers/ldap/sdap_async_groups.c
+++ b/src/providers/ldap/sdap_async_groups.c
@@ -3174,8 +3174,8 @@ static void sdap_nested_group_process_user(struct tevent_req *subreq)
struct sdap_nested_group_ctx *state =
tevent_req_data(req, struct sdap_nested_group_ctx);
TALLOC_CTX *tmp_ctx;
- size_t count;
- struct sysdb_attrs **replies;
+ size_t count = 0;
+ struct sysdb_attrs **replies = NULL;
int hret;
hash_key_t key;
hash_value_t value;
@@ -3383,8 +3383,8 @@ static void sdap_nested_group_process_ldap_user(struct tevent_req *subreq)
struct sdap_nested_group_ctx *state =
tevent_req_data(req, struct sdap_nested_group_ctx);
TALLOC_CTX *tmp_ctx;
- size_t count;
- struct sysdb_attrs **replies;
+ size_t count = 0;
+ struct sysdb_attrs **replies = NULL;
int hret;
hash_key_t key;
hash_value_t value;
diff --git a/src/providers/ldap/sdap_sudo.c b/src/providers/ldap/sdap_sudo.c
index 636eae41b..acdc9a91c 100644
--- a/src/providers/ldap/sdap_sudo.c
+++ b/src/providers/ldap/sdap_sudo.c
@@ -1009,8 +1009,8 @@ static void sdap_sudo_periodical_full_refresh_done(struct tevent_req *req)
struct tevent_req *subreq = NULL; /* req from sdap_sudo_full_refresh_send() */
struct sdap_sudo_ctx *sudo_ctx = NULL;
time_t delay;
- int dp_error;
- int error;
+ int dp_error = DP_ERR_FATAL;
+ int error = EFAULT;
int ret;
ret = sdap_sudo_timer_recv(req, req, &subreq);