diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-03 12:58:01 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-03 21:14:58 +0100 |
commit | 675d5fe981cb44e94ebbf4885fea0e976d5c038f (patch) | |
tree | 15d7802111019833d871cf4298cb937f628a4e2a /source3/torture | |
parent | 37ac16a88f20ef9a4a8d0fdfa1349a16f818696d (diff) | |
download | samba-675d5fe981cb44e94ebbf4885fea0e976d5c038f.tar.gz samba-675d5fe981cb44e94ebbf4885fea0e976d5c038f.tar.xz samba-675d5fe981cb44e94ebbf4885fea0e976d5c038f.zip |
s3: Fix an uninitialized variable warning
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index f89f3206316..755d22bc2df 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -5801,7 +5801,8 @@ static bool run_notify_bench(int dummy) struct tevent_context *ev; NTSTATUS status; uint16_t dnum; - struct tevent_req *req1, *req2; + struct tevent_req *req1; + struct tevent_req *req2 = NULL; int i, num_unc_names; int num_finished = 0; |