diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-04 02:01:48 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-04 02:01:48 +0000 |
commit | 1246072d99666182fec480a5640dab136b6edff1 (patch) | |
tree | c9fd050ecaee79037835b0f43218ef53bdc651e4 /source3/utils/locktest.c | |
parent | 82e6018ad808a2b85500012283d69f6cbf7b5e6c (diff) | |
download | samba-1246072d99666182fec480a5640dab136b6edff1.tar.gz samba-1246072d99666182fec480a5640dab136b6edff1.tar.bz2 samba-1246072d99666182fec480a5640dab136b6edff1.zip |
fixed a uninit memory read that insure found
(This used to be commit 43fe5b98b4514d59e1c4bbc54a628cfbd771fc4f)
Diffstat (limited to 'source3/utils/locktest.c')
-rw-r--r-- | source3/utils/locktest.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source3/utils/locktest.c b/source3/utils/locktest.c index a0b9e80147..f125ab241a 100644 --- a/source3/utils/locktest.c +++ b/source3/utils/locktest.c @@ -37,19 +37,17 @@ static BOOL showall; #define LOCK_PCT 45 #define UNLOCK_PCT 45 -enum op_type {OP_lock=0, OP_unlock, OP_reopen}; - struct preset { int r1, r2; int conn, f; int start, len; int rw; } preset[] = { -{86, 37, 0, 1, 29, 41, WRITE_LOCK}, +{86, 37, 0, 1, 0, 29+41, WRITE_LOCK}, {46, 21, 0, 1, 55, 7, READ_LOCK}, {51, 35, 0, 0, 79, 2, WRITE_LOCK}, -{69, 97, 0, 1, }, -{35, 27, 1, 1, 31, 45, READ_LOCK}, +{69, 97, 0, 1, 0, 0, 0}, +{35, 27, 1, 1, 1, 31+45, READ_LOCK}, }; /* each server has two connections open to it. Each connection has two file @@ -157,7 +155,6 @@ static void test_locks(struct cli_state *cli[2][2]) printf("%5d r1=%d r2=%d reopen conn=%d f=%d\n", n, r1, r2, conn, f); } - if (ret1 != ret2) return; } if (n % 100 == 0) { printf("%d\n", n); |