From: Volker Lendecke Date: Wed, 26 Jul 2017 13:10:55 +0000 (+0200) Subject: dbwrap: Simplify dbwrap_trans_store X-Git-Tag: tdb-1.3.15~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ddf8e0abc235f396d4b70f9cb22f55d21dffdc5;p=thirdparty%2Fsamba.git dbwrap: Simplify dbwrap_trans_store Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/lib/dbwrap/dbwrap_util.c b/lib/dbwrap/dbwrap_util.c index c7971a95b85..acd3c1837bc 100644 --- a/lib/dbwrap/dbwrap_util.c +++ b/lib/dbwrap/dbwrap_util.c @@ -344,24 +344,17 @@ struct dbwrap_store_context { static NTSTATUS dbwrap_store_action(struct db_context *db, void *private_data) { - struct db_record *rec = NULL; NTSTATUS status; struct dbwrap_store_context *store_ctx; store_ctx = (struct dbwrap_store_context *)private_data; - rec = dbwrap_fetch_locked(db, talloc_tos(), *(store_ctx->key)); - if (rec == NULL) { - DEBUG(5, ("fetch_locked failed\n")); - return NT_STATUS_NO_MEMORY; - } - - status = dbwrap_record_store(rec, *(store_ctx->dbuf), store_ctx->flag); + status = dbwrap_store(db, *(store_ctx->key), *(store_ctx->dbuf), + store_ctx->flag); if (!NT_STATUS_IS_OK(status)) { DEBUG(5, ("store returned %s\n", nt_errstr(status))); } - TALLOC_FREE(rec); return status; }