[PATCH] ntdb: Make sure variables passed by value are initialized.

Andreas Schneider asn at samba.org
Fri Oct 11 06:44:50 MDT 2013


This fixes a GCC warning.

Signed-off-by: Andreas Schneider <asn at samba.org>
---
 lib/ntdb/check.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/ntdb/check.c b/lib/ntdb/check.c
index 2790c68..58bfc5d 100644
--- a/lib/ntdb/check.c
+++ b/lib/ntdb/check.c
@@ -659,10 +659,10 @@ _PUBLIC_ enum NTDB_ERROR ntdb_check_(struct ntdb_context *ntdb,
 			  enum NTDB_ERROR (*check)(NTDB_DATA, NTDB_DATA, void *),
 			  void *data)
 {
-	ntdb_off_t *fr = NULL, *used = NULL, ft, recovery;
+	ntdb_off_t *fr = NULL, *used = NULL, ft = NULL, recovery = NULL;
 	size_t num_free = 0, num_used = 0, num_found = 0, num_ftables = 0,
 		num_capabilities = 0;
-	uint64_t features;
+	uint64_t features = 0;
 	enum NTDB_ERROR ecode;
 
 	if (ntdb->flags & NTDB_CANT_CHECK) {
-- 
1.8.4




More information about the samba-technical mailing list