diff options
author | Volker Lendecke <vl@samba.org> | 2013-06-22 12:13:26 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-07-22 15:07:21 -0700 |
commit | a6a0d238b368fd15ceb0237c2f9ff13c58b18fad (patch) | |
tree | 5ea39c7da402185c6a8ed12a5e54d129ef91d67b | |
parent | f25449b00a81bdb4010aed36d7c713513b70bcce (diff) | |
download | samba-a6a0d238b368fd15ceb0237c2f9ff13c58b18fad.tar.gz samba-a6a0d238b368fd15ceb0237c2f9ff13c58b18fad.tar.xz samba-a6a0d238b368fd15ceb0237c2f9ff13c58b18fad.zip |
tdb: Fix CID 1034959 Uninitialized scalar variable
log_ctx.log_private was used uninitialized. Not a real bug here,
as tdb_log does not access it, but tdb_open_ex still moves around
uninitialized data. So this would show up in valgrind as well.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | lib/tdb/tools/tdbtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/tools/tdbtool.c b/lib/tdb/tools/tdbtool.c index 3f870d4668..01b9a14cc1 100644 --- a/lib/tdb/tools/tdbtool.c +++ b/lib/tdb/tools/tdbtool.c @@ -222,7 +222,7 @@ static void terror(const char *why) static void create_tdb(const char *tdbname) { - struct tdb_logging_context log_ctx; + struct tdb_logging_context log_ctx = { NULL, NULL}; log_ctx.log_fn = tdb_log; if (tdb) tdb_close(tdb); |