From 675d5fe981cb44e94ebbf4885fea0e976d5c038f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 3 Jan 2010 12:58:01 +0100 Subject: s3: Fix an uninitialized variable warning --- source3/torture/torture.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/torture/torture.c') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index f89f320631..755d22bc2d 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; -- cgit