r6176: Fix a possibly uninitialised variable warning.
authorTim Potter <tpot@samba.org>
Sat, 2 Apr 2005 00:59:12 +0000 (00:59 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:56:28 +0000 (10:56 -0500)
(This used to be commit 3cf5ad4e80f95c302a502a78e2ee1b23524625bf)

source3/torture/torture.c

index 4828861906fd013cd75b062978ddf5cfcee189ac..8a4de57e7ffa45724b4e1eedc48b7b94bbba4d58 100644 (file)
@@ -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;