1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r15635: Fix a bogus gcc uninit variable message

(This used to be commit 53f7104b4fbb4f59c18458f589e25e7b536642cb)
This commit is contained in:
Volker Lendecke 2006-05-16 15:14:39 +00:00 committed by Gerald (Jerry) Carter
parent ae0939ee66
commit c290d34985

View File

@ -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;