From 585d87a9590ecf64681700d70c37e5276ee8514a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 2 May 2004 05:16:15 +0000 Subject: r442: fixed some uninitialised variables pointed out by gcc -O3 (This used to be commit ff31cfb941b77e99e648011a6b7639b2a5923a6a) --- source4/lib/ldb/common/util.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/lib/ldb/common/util.c') diff --git a/source4/lib/ldb/common/util.c b/source4/lib/ldb/common/util.c index e1a7ada1c6..534d07c1df 100644 --- a/source4/lib/ldb/common/util.c +++ b/source4/lib/ldb/common/util.c @@ -73,14 +73,13 @@ int list_find(const void *needle, max_i = nmemb-1; while (min_i < max_i) { - size_t test_t; int r; test_i = (min_i + max_i) / 2; r = comp_fn(needle, *(void * const *)(base_p + (size * test_i))); if (r == 0) { /* scan back for first element */ - while (test_t > 0 && + while (test_i > 0 && comp_fn(needle, *(void * const *)(base_p + (size * (test_i-1)))) == 0) { test_i--; } -- cgit