From d26028316d69f2346cfa7f39c9678d94a58b4535 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 21 Apr 2012 12:04:13 +0200 Subject: s3: Initialize "stored_callback" in dbwrap_cache This should fix one of the recent flaky tests --- source3/lib/dbwrap/dbwrap_cache.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/lib') diff --git a/source3/lib/dbwrap/dbwrap_cache.c b/source3/lib/dbwrap/dbwrap_cache.c index e0fced591b..d61aa89a44 100644 --- a/source3/lib/dbwrap/dbwrap_cache.c +++ b/source3/lib/dbwrap/dbwrap_cache.c @@ -208,6 +208,7 @@ struct db_context *db_open_cache(TALLOC_CTX *mem_ctx, db->transaction_cancel = dbwrap_cache_transaction_cancel; db->parse_record = dbwrap_cache_parse_record; db->exists = dbwrap_cache_exists; + db->stored_callback = NULL; db->wipe = NULL; db->lock_order = 0; db->persistent = false; -- cgit