summaryrefslogtreecommitdiffstats
path: root/source/torture
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-04-02 00:59:12 +0000
committerTim Potter <tpot@samba.org>2005-04-02 00:59:12 +0000
commit1da4fdfd485b76390c823422ff050d35bc587db3 (patch)
tree2f8d118013abe4b7d7c38aca1c291b87e91ce958 /source/torture
parent2f26eeba2039f66120643a49b19df83bca5c9e23 (diff)
downloadsamba-1da4fdfd485b76390c823422ff050d35bc587db3.tar.gz
samba-1da4fdfd485b76390c823422ff050d35bc587db3.tar.xz
samba-1da4fdfd485b76390c823422ff050d35bc587db3.zip
r6176: Fix a possibly uninitialised variable warning.
Diffstat (limited to 'source/torture')
-rw-r--r--source/torture/torture.c2
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;