summaryrefslogtreecommitdiff
path: root/source3/client/client.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-11-24 01:03:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:25 -0500
commit90a18110e9c014ff33977be4656886b093c7e022 (patch)
tree25d41c526fa7235abc96c50fc11afba12dff0b81 /source3/client/client.c
parentb321a8a9ad5d2b8e276c97a4a057c5fbef8b5ff7 (diff)
downloadsamba-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/client/client.c')
-rw-r--r--source3/client/client.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 29635e4de9..8c43f4e16e 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -2816,10 +2816,12 @@ static char **completion_fn(const char *text, int start, int end)
return NULL;
} else {
char **matches;
- int i, len, samelen, count=1;
+ int i, len, samelen = 0, count=1;
matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
- if (!matches) return NULL;
+ if (!matches) {
+ return NULL;
+ }
matches[0] = NULL;
len = strlen(text);