diff options
author | Jeremy Allison <jra@samba.org> | 2004-11-24 01:03:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:25 -0500 |
commit | 90a18110e9c014ff33977be4656886b093c7e022 (patch) | |
tree | 25d41c526fa7235abc96c50fc11afba12dff0b81 /source3/nsswitch | |
parent | b321a8a9ad5d2b8e276c97a4a057c5fbef8b5ff7 (diff) | |
download | samba-90a18110e9c014ff33977be4656886b093c7e022.tar.gz samba-90a18110e9c014ff33977be4656886b093c7e022.tar.bz2 samba-90a18110e9c014ff33977be4656886b093c7e022.zip |
r3931: Fix all "may be used uninitialized" and "shadow" warnings.
Jeremy.
(This used to be commit 8e979772a640bb4f00f4d72b6a9c837b8ef14333)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_wins.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_wins.c b/source3/nsswitch/winbindd_wins.c index 6b37e5bcf4..107c9d264c 100644 --- a/source3/nsswitch/winbindd_wins.c +++ b/source3/nsswitch/winbindd_wins.c @@ -88,7 +88,7 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count) { int fd; struct ip_service *ret = NULL; - struct in_addr *return_ip; + struct in_addr *return_ip = NULL; int j, i, flags = 0; *count = 0; @@ -121,7 +121,9 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count) j--) { struct in_addr *bcast = iface_n_bcast(j); return_ip = name_query(fd,name,0x20,True,True,*bcast,count, &flags, NULL); - if (return_ip) break; + if (return_ip) { + break; + } } close(fd); |