diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-05-16 15:14:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:04 -0500 |
commit | c290d34985830c343b19cc4ffde33ff3e67272d5 (patch) | |
tree | 303213d4fc6343ecc8f09510caae9c6984506c52 /source3 | |
parent | ae0939ee66602f8667aab2b069768ef17102d851 (diff) | |
download | samba-c290d34985830c343b19cc4ffde33ff3e67272d5.tar.gz samba-c290d34985830c343b19cc4ffde33ff3e67272d5.tar.bz2 samba-c290d34985830c343b19cc4ffde33ff3e67272d5.zip |
r15635: Fix a bogus gcc uninit variable message
(This used to be commit 53f7104b4fbb4f59c18458f589e25e7b536642cb)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 63056645cd..5f0e296a04 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; |