summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2010-01-05 16:17:27 +0100
committerKarolin Seeger <kseeger@samba.org>2010-04-01 09:39:15 +0200
commitc440c6ba9fc2f4da4d1452014e0f196efb6fd0c2 (patch)
treefb948cce982511fd87f37914c1fb199ed32c906c /source3/lib
parentb4055e8baca43293257aed7291eef951a05ca754 (diff)
downloadsamba-c440c6ba9fc2f4da4d1452014e0f196efb6fd0c2.tar.gz
s3:dbwrap_ctdb: fix an uninitialized variable.
Michael (cherry picked from commit 1505b69dea6044a13a59f672e22f5833256cb981) (cherry picked from commit 89cb10de5ec46384c5ae8d558ac29e4f9e00e8a1)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/dbwrap_ctdb.c2
1 files changed, 1 insertions, 1 deletions
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;