From c290d34985830c343b19cc4ffde33ff3e67272d5 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 16 May 2006 15:14:39 +0000 Subject: [PATCH] r15635: Fix a bogus gcc uninit variable message (This used to be commit 53f7104b4fbb4f59c18458f589e25e7b536642cb) --- source3/libads/ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 63056645cdd..5f0e296a04c 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -2473,7 +2473,7 @@ BOOL ads_check_sfu_mapping(ADS_STRUCT *ads) BOOL ret = False; TALLOC_CTX *ctx = NULL; const char *gidnumber, *uidnumber, *homedir, *shell, *gecos; - char *schema_path; + char *schema_path = NULL; ADS_STRUCT *ads_s = ads; ADS_STATUS status; -- 2.11.4.GIT