diff options
author | Michael Adam <obnox@samba.org> | 2010-01-05 16:17:27 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-02-12 23:12:11 +0100 |
commit | 1505b69dea6044a13a59f672e22f5833256cb981 (patch) | |
tree | 284a40830ec9b37fe6a8a8812ca9814019454fc2 /source3 | |
parent | fb981cdb8282d3b9b46d9ca515a5685add232a72 (diff) | |
download | samba-1505b69dea6044a13a59f672e22f5833256cb981.tar.gz samba-1505b69dea6044a13a59f672e22f5833256cb981.tar.bz2 samba-1505b69dea6044a13a59f672e22f5833256cb981.zip |
s3:dbwrap_ctdb: fix an uninitialized variable.
Michael
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/dbwrap_ctdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |