i noticed warning during compilation:

src/providers/ldap/sdap_sudo.c: In function 'sdap_sudo_schedule_refresh':
src/providers/ldap/sdap_sudo.c:1236:9: warning: 'send_fn' may be used uninitialized in this function [-Wmaybe-uninitialized]

patch is attached

Ondra
--
Ondrej Kos
Associate Software Engineer
Identity Management
Red Hat Czech

phone: +420-532-294-558
cell:  +420-736-417-909
ext:   82-62558
loc:   1013 Brno 1 office
irc:   okos @ #brno
From 976184e6f09e6e58d4088058b241bfa5644372a6 Mon Sep 17 00:00:00 2001
From: Ondrej Kos <[email protected]>
Date: Wed, 19 Dec 2012 10:25:39 +0100
Subject: [PATCH] LDAP: initialize refresh function handler

---
 src/providers/ldap/sdap_sudo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/providers/ldap/sdap_sudo.c b/src/providers/ldap/sdap_sudo.c
index 53aa6d4a047a2e288eb2384893b2e8c81b94ea08..7bd71f5f3fe1b13235d7c34c8678462589b38c8c 100644
--- a/src/providers/ldap/sdap_sudo.c
+++ b/src/providers/ldap/sdap_sudo.c
@@ -1211,7 +1211,7 @@ static int sdap_sudo_schedule_refresh(TALLOC_CTX *mem_ctx,
                                       struct tevent_req **_req)
 {
     struct tevent_req *req = NULL;
-    sdap_sudo_timer_fn_t send_fn;
+    sdap_sudo_timer_fn_t send_fn = NULL;
     const char *name = NULL;
     struct timeval when;
 
-- 
1.7.11.7

_______________________________________________
sssd-devel mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/sssd-devel

Reply via email to