X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/04a3b93f1da94cc128f2e46a22edb7f8f6a8791b..a85c067ba6c6940512cf57ec213277a370d87e70:/src/src/lookups/lmdb.c diff --git a/src/src/lookups/lmdb.c b/src/src/lookups/lmdb.c index 5fe86fea2..ccfdbe453 100644 --- a/src/src/lookups/lmdb.c +++ b/src/src/lookups/lmdb.c @@ -2,9 +2,10 @@ * Exim - an Internet mail transport agent * *************************************************/ +/* Copyright (c) The Exim Maintainers 2020 - 2022 */ /* Copyright (c) University of Cambridge 2016 - 2018 */ -/* Copyright (c) The Exim Maintainers 2020 - 2021 */ /* See the file NOTICE for conditions of use and distribution. */ +/* SPDX-License-Identifier: GPL-2.0-only */ #include "../exim.h" @@ -31,7 +32,7 @@ Lmdbstrct * lmdb_p; int ret, save_errno; const uschar * errstr; -lmdb_p = store_get(sizeof(Lmdbstrct), FALSE); +lmdb_p = store_get(sizeof(Lmdbstrct), GET_UNTAINTED); lmdb_p->txn = NULL; if ((ret = mdb_env_create(&db_env)))