From bdae18b799399b8834ed09b052e65660bcb08656 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sat, 2 Apr 2005 00:59:12 +0000 Subject: r6176: Fix a possibly uninitialised variable warning. (This used to be commit 3cf5ad4e80f95c302a502a78e2ee1b23524625bf) --- source3/torture/torture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 4828861906..8a4de57e7f 100644 --- a/source3/torture/torture.c +++ b/source3/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; -- cgit