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 | bdae18b799399b8834ed09b052e65660bcb08656 (patch) | |
tree | 1ad0286aafba404478e780c28681f141ed8494ee /source3/torture/torture.c | |
parent | 219ad7da07b9a0277138373cfa3b2c0ff2506c52 (diff) | |
download | samba-bdae18b799399b8834ed09b052e65660bcb08656.tar.gz samba-bdae18b799399b8834ed09b052e65660bcb08656.tar.xz samba-bdae18b799399b8834ed09b052e65660bcb08656.zip |
r6176: Fix a possibly uninitialised variable warning.
(This used to be commit 3cf5ad4e80f95c302a502a78e2ee1b23524625bf)
Diffstat (limited to 'source3/torture/torture.c')
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |