diff options
author | Tim Potter <tpot@samba.org> | 2005-04-02 00:59:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:28 -0500 |
commit | 3cf5ad4e80f95c302a502a78e2ee1b23524625bf (patch) | |
tree | 2f8d118013abe4b7d7c38aca1c291b87e91ce958 /source/torture | |
parent | 17d13b57136d1f58c450d4587476304482bbd12a (diff) | |
download | samba-3cf5ad4e80f95c302a502a78e2ee1b23524625bf.tar.gz samba-3cf5ad4e80f95c302a502a78e2ee1b23524625bf.tar.xz samba-3cf5ad4e80f95c302a502a78e2ee1b23524625bf.zip |
r6176: Fix a possibly uninitialised variable warning.
Diffstat (limited to 'source/torture')
-rw-r--r-- | source/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/torture/torture.c b/source/torture/torture.c index 4828861906f..8a4de57e7ff 100644 --- a/source/torture/torture.c +++ b/source/torture/torture.c @@ -537,7 +537,7 @@ static BOOL rw_torture2(struct cli_state *c1, struct cli_state *c2) static BOOL run_readwritetest(int dummy) { static struct cli_state *cli1, *cli2; - BOOL test1, test2; + BOOL test1, test2 = False; if (!torture_open_connection(&cli1) || !torture_open_connection(&cli2)) { return False; |