From 1505b69dea6044a13a59f672e22f5833256cb981 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 5 Jan 2010 16:17:27 +0100 Subject: s3:dbwrap_ctdb: fix an uninitialized variable. Michael --- source3/lib/dbwrap_ctdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index d70637ed0b..d6fde3560d 100644 --- a/source3/lib/dbwrap_ctdb.c +++ b/source3/lib/dbwrap_ctdb.c @@ -381,7 +381,7 @@ static bool pull_newest_from_marshall_buffer(struct ctdb_marshall_buffer *buf, { struct ctdb_rec_data *rec = NULL; struct ctdb_ltdb_header h; - bool found; + bool found = false; TDB_DATA data; int i; -- cgit