From c440c6ba9fc2f4da4d1452014e0f196efb6fd0c2 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 5 Jan 2010 16:17:27 +0100 Subject: [PATCH] s3:dbwrap_ctdb: fix an uninitialized variable. Michael (cherry picked from commit 1505b69dea6044a13a59f672e22f5833256cb981) (cherry picked from commit 89cb10de5ec46384c5ae8d558ac29e4f9e00e8a1) --- source3/lib/dbwrap_ctdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index d70637ed0bd..d6fde3560d5 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; -- 2.11.4.GIT